diff --git a/Makefile b/Makefile index eca1530f7..536a924ba 100644 --- a/Makefile +++ b/Makefile @@ -120,7 +120,8 @@ test-unit: ## Run unit tests. To run a specific test, pass the FILTER var. Usage test-acc: ## Run acceptance tests with http recordings. To run a specific test, pass the FILTER var. Usage `make test-acc FILTER="TestAccResourceServer` ${call print, "Running acceptance tests with http recordings"} - @AUTH0_HTTP_RECORDINGS=on \ + @terraform version; \ + AUTH0_HTTP_RECORDINGS=on \ AUTH0_DOMAIN=terraform-provider-auth0-dev.eu.auth0.com \ TF_ACC=1 \ go test \ diff --git a/docs/data-sources/organization.md b/docs/data-sources/organization.md index bce31517f..1a7a94dfd 100644 --- a/docs/data-sources/organization.md +++ b/docs/data-sources/organization.md @@ -33,6 +33,7 @@ data "auth0_organization" "some-organization-by-id" { ### Read-Only - `branding` (List of Object) Defines how to style the login pages. (see [below for nested schema](#nestedatt--branding)) +- `client_grants` (Set of String) Client Grant ID(s) that are associated to the organization. - `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. diff --git a/docs/resources/client_grant.md b/docs/resources/client_grant.md index 9e86bbde3..6885f5e2a 100644 --- a/docs/resources/client_grant.md +++ b/docs/resources/client_grant.md @@ -48,6 +48,11 @@ resource "auth0_client_grant" "my_client_grant" { - `client_id` (String) ID of the client for this grant. - `scopes` (List of String) Permissions (scopes) included in this grant. +### Optional + +- `allow_any_organization` (Boolean) If enabled, any organization can be used with this grant. If disabled (default), the grant must be explicitly assigned to the desired organizations. +- `organization_usage` (String) Defines whether organizations can be used with client credentials exchanges for this grant. (defaults to deny when not defined) + ### Read-Only - `id` (String) The ID of this resource. diff --git a/docs/resources/organization_client_grant.md b/docs/resources/organization_client_grant.md new file mode 100644 index 000000000..dc6c1fa40 --- /dev/null +++ b/docs/resources/organization_client_grant.md @@ -0,0 +1,25 @@ +--- +page_title: "Resource: auth0_organization_client_grant" +description: |- + With this resource, you can manage a client grant associated with an organization. +--- + +# Resource: auth0_organization_client_grant + +With this resource, you can manage a client grant associated with an organization. + + + + +## Schema + +### Required + +- `grant_id` (String) A Client Grant ID to add to the organization. +- `organization_id` (String) The ID of the organization to associate the client grant. + +### Read-Only + +- `id` (String) The ID of this resource. + + diff --git a/internal/auth0/client/expand.go b/internal/auth0/client/expand.go index 1758cbf68..8c21b9580 100644 --- a/internal/auth0/client/expand.go +++ b/internal/auth0/client/expand.go @@ -945,5 +945,13 @@ func expandClientGrant(data *schema.ResourceData) *management.ClientGrant { clientGrant.Scope = value.Strings(cfg.GetAttr("scopes")) } + if data.IsNewResource() || data.HasChange("allow_any_organization") { + clientGrant.AllowAnyOrganization = value.Bool(cfg.GetAttr("allow_any_organization")) + } + + if data.IsNewResource() || data.HasChange("organization_usage") { + clientGrant.OrganizationUsage = value.String(cfg.GetAttr("organization_usage")) + } + return clientGrant } diff --git a/internal/auth0/client/flatten.go b/internal/auth0/client/flatten.go index ab8fa172f..ec4ffffd9 100644 --- a/internal/auth0/client/flatten.go +++ b/internal/auth0/client/flatten.go @@ -571,6 +571,8 @@ func flattenClientGrant(data *schema.ResourceData, clientGrant *management.Clien data.Set("client_id", clientGrant.GetClientID()), data.Set("audience", clientGrant.GetAudience()), data.Set("scopes", clientGrant.GetScope()), + data.Set("allow_any_organization", clientGrant.GetAllowAnyOrganization()), + data.Set("organization_usage", clientGrant.GetOrganizationUsage()), ) return result.ErrorOrNil() diff --git a/internal/auth0/client/resource_grant.go b/internal/auth0/client/resource_grant.go index ca9be4197..df108392a 100644 --- a/internal/auth0/client/resource_grant.go +++ b/internal/auth0/client/resource_grant.go @@ -48,6 +48,21 @@ func NewGrantResource() *schema.Resource { Required: true, Description: "Permissions (scopes) included in this grant.", }, + "organization_usage": { + Type: schema.TypeString, + Optional: true, + ValidateFunc: validation.StringInSlice([]string{ + "allow", "deny", "require", + }, true), + Description: "Defines whether organizations can be used with client credentials exchanges " + + "for this grant. (defaults to deny when not defined)", + }, + "allow_any_organization": { + Type: schema.TypeBool, + Optional: true, + Description: "If enabled, any organization can be used with this grant. If disabled (default), " + + "the grant must be explicitly assigned to the desired organizations.", + }, }, } } diff --git a/internal/auth0/organization/data_source.go b/internal/auth0/organization/data_source.go index 08f8b07de..75e297984 100644 --- a/internal/auth0/organization/data_source.go +++ b/internal/auth0/organization/data_source.go @@ -78,6 +78,15 @@ func dataSourceSchema() map[string]*schema.Schema { Description: "User ID(s) that are members of the organization.", } + dataSourceSchema["client_grants"] = &schema.Schema{ + Type: schema.TypeSet, + Elem: &schema.Schema{ + Type: schema.TypeString, + }, + Computed: true, + Description: "Client Grant ID(s) that are associated to the organization.", + } + return dataSourceSchema } @@ -101,7 +110,12 @@ func readOrganizationForDataSource(ctx context.Context, data *schema.ResourceDat return diag.FromErr(err) } - return diag.FromErr(flattenOrganizationForDataSource(data, foundOrganization, foundConnections, foundMembers)) + foundClientGrants, err := fetchAllOrganizationClientGrants(ctx, api, foundOrganization.GetID()) + if err != nil { + return diag.FromErr(err) + } + + return diag.FromErr(flattenOrganizationForDataSource(data, foundOrganization, foundConnections, foundMembers, foundClientGrants)) } func findOrganizationByIDOrName( @@ -173,3 +187,16 @@ func fetchAllOrganizationMembers( return foundMembers, nil } + +func fetchAllOrganizationClientGrants( + ctx context.Context, + api *management.Management, + organizationID string, +) ([]*management.ClientGrant, error) { + clientGrantList, err := api.Organization.ClientGrants(ctx, organizationID) + if err != nil { + return nil, err + } + + return clientGrantList.ClientGrants, nil +} diff --git a/internal/auth0/organization/flatten.go b/internal/auth0/organization/flatten.go index 0ef5a3b2f..4581eaf29 100644 --- a/internal/auth0/organization/flatten.go +++ b/internal/auth0/organization/flatten.go @@ -22,11 +22,13 @@ func flattenOrganizationForDataSource( organization *management.Organization, connections []*management.OrganizationConnection, members []management.OrganizationMember, + clientGrants []*management.ClientGrant, ) error { result := multierror.Append( flattenOrganization(data, organization), data.Set("connections", flattenOrganizationEnabledConnections(connections)), data.Set("members", flattenOrganizationMembersSlice(members)), + data.Set("client_grants", flattenOrganizationClientGrantsSlice(clientGrants)), ) return result.ErrorOrNil() @@ -113,3 +115,14 @@ func flattenOrganizationMembersSlice(members []management.OrganizationMember) [] return flattenedMembers } + +func flattenOrganizationClientGrantsSlice(clientGrants []*management.ClientGrant) []string { + if len(clientGrants) == 0 { + return nil + } + flattenedClientGrants := make([]string, 0) + for _, grant := range clientGrants { + flattenedClientGrants = append(flattenedClientGrants, grant.GetID()) + } + return flattenedClientGrants +} diff --git a/internal/auth0/organization/resource_client_grant.go b/internal/auth0/organization/resource_client_grant.go new file mode 100644 index 000000000..8c1e21921 --- /dev/null +++ b/internal/auth0/organization/resource_client_grant.go @@ -0,0 +1,87 @@ +package organization + +import ( + "context" + + "github.com/hashicorp/terraform-plugin-sdk/v2/diag" + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" + + "github.com/auth0/terraform-provider-auth0/internal/config" + internalError "github.com/auth0/terraform-provider-auth0/internal/error" + internalSchema "github.com/auth0/terraform-provider-auth0/internal/schema" +) + +// NewOrganizationClientGrantResource will return a new auth0_organization_client_grant resource. +func NewOrganizationClientGrantResource() *schema.Resource { + return &schema.Resource{ + Description: "With this resource, you can manage a client grant associated with an organization.", + CreateContext: createOrganizationClientGrant, + ReadContext: readOrganizationClientGrant, + DeleteContext: deleteOrganizationClientGrant, + Importer: &schema.ResourceImporter{ + StateContext: internalSchema.ImportResourceGroupID("organization_id", "grant_id"), + }, + Schema: map[string]*schema.Schema{ + "organization_id": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + Description: "The ID of the organization to associate the client grant.", + }, + "grant_id": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + Description: "A Client Grant ID to add to the organization.", + }, + }, + } +} + +func createOrganizationClientGrant(ctx context.Context, data *schema.ResourceData, meta interface{}) diag.Diagnostics { + api := meta.(*config.Config).GetAPI() + organizationID := data.Get("organization_id").(string) + grantID := data.Get("grant_id").(string) + + if err := api.Organization.AssociateClientGrant(ctx, organizationID, grantID); err != nil { + return diag.FromErr(err) + } + + internalSchema.SetResourceGroupID(data, organizationID, grantID) + + return readOrganizationClientGrant(ctx, data, meta) +} + +func readOrganizationClientGrant(ctx context.Context, data *schema.ResourceData, meta interface{}) diag.Diagnostics { + api := meta.(*config.Config).GetAPI() + + organizationID := data.Get("organization_id").(string) + clientGrantList, err := api.Organization.ClientGrants(ctx, organizationID) + + if err != nil { + return diag.FromErr(internalError.HandleAPIError(data, err)) + } + + grantID := data.Get("grant_id").(string) + for _, grant := range clientGrantList.ClientGrants { + if grant.GetID() == grantID { + return nil + } + } + + data.SetId("") + return nil +} + +func deleteOrganizationClientGrant(ctx context.Context, data *schema.ResourceData, meta interface{}) diag.Diagnostics { + api := meta.(*config.Config).GetAPI() + + organizationID := data.Get("organization_id").(string) + grantID := data.Get("grant_id").(string) + + if err := api.Organization.RemoveClientGrant(ctx, organizationID, grantID); err != nil { + return diag.FromErr(internalError.HandleAPIError(data, err)) + } + + return nil +} diff --git a/internal/auth0/organization/resource_client_grant_test.go b/internal/auth0/organization/resource_client_grant_test.go new file mode 100644 index 000000000..9f7dea72d --- /dev/null +++ b/internal/auth0/organization/resource_client_grant_test.go @@ -0,0 +1,70 @@ +package organization_test + +import ( + "testing" + + "github.com/hashicorp/terraform-plugin-testing/helper/resource" + + "github.com/auth0/terraform-provider-auth0/internal/acctest" +) + +const testAssociateOrganizationClientGrant = ` +resource "auth0_organization" "my_organization" { + name = "test-org-acceptance-testing" + display_name = "Test Org Acceptance Testing" +} + +resource "auth0_resource_server" "new_resource_server" { + depends_on = [ auth0_organization.my_organization ] + name = "Example API" + identifier = "https://api.travel00123.com/" +} + + +resource "auth0_client" "my_test_client"{ + depends_on = [ auth0_organization.my_organization, auth0_resource_server.new_resource_server ] + name = "test_client" + organization_usage = "allow" + default_organization { + organization_id = auth0_organization.my_organization.id + flows = ["client_credentials"] + } +} + +resource "auth0_client_grant" "my_client_grant" { + depends_on = [ auth0_resource_server.new_resource_server, auth0_client.my_test_client ] + client_id = auth0_client.my_test_client.id + audience = auth0_resource_server.new_resource_server.identifier + scopes = ["create:organization_client_grants","create:resource"] + allow_any_organization = true + organization_usage = "allow" +} + + +resource "auth0_organization_client_grant" "associate_org_client_grant"{ + depends_on = [ auth0_client_grant.my_client_grant ] + organization_id = auth0_organization.my_organization.id + grant_id = auth0_client_grant.my_client_grant.id +} + +data "auth0_organization" "retrieve_org_data" { + depends_on = [ auth0_organization_client_grant.associate_org_client_grant ] + organization_id = auth0_organization.my_organization.id +} + +` + +func TestAccOrganizationClientGrant(t *testing.T) { + acctest.Test(t, resource.TestCase{ + Steps: []resource.TestStep{ + { + Config: acctest.ParseTestName(testAssociateOrganizationClientGrant, t.Name()), + Check: resource.ComposeTestCheckFunc( + resource.TestCheckResourceAttrSet("auth0_organization_client_grant.associate_org_client_grant", "organization_id"), + resource.TestCheckResourceAttrSet("auth0_organization_client_grant.associate_org_client_grant", "grant_id"), + resource.TestCheckResourceAttrSet("data.auth0_organization.retrieve_org_data", "client_grants.0"), + ), + }, + }, + }) +} diff --git a/internal/auth0/resourceserver/resource.go b/internal/auth0/resourceserver/resource.go index bbc79873f..c696313aa 100644 --- a/internal/auth0/resourceserver/resource.go +++ b/internal/auth0/resourceserver/resource.go @@ -4,6 +4,7 @@ import ( "context" "fmt" "net/http" + "time" "github.com/hashicorp/go-cty/cty" "github.com/hashicorp/go-multierror" @@ -270,6 +271,7 @@ func createResourceServer(ctx context.Context, data *schema.ResourceData, meta i if err := fixNullableAttributes(ctx, data, api); err != nil { return diag.FromErr(err) } + time.Sleep(200 * time.Millisecond) return readResourceServer(ctx, data, meta) } @@ -286,6 +288,7 @@ func updateResourceServer(ctx context.Context, data *schema.ResourceData, meta i if err := fixNullableAttributes(ctx, data, api); err != nil { return diag.FromErr(err) } + time.Sleep(200 * time.Millisecond) return readResourceServer(ctx, data, meta) } diff --git a/internal/provider/provider.go b/internal/provider/provider.go index 90c54cca1..b0f20d64b 100644 --- a/internal/provider/provider.go +++ b/internal/provider/provider.go @@ -113,6 +113,7 @@ func New() *schema.Provider { "auth0_hook": hook.NewResource(), "auth0_log_stream": logstream.NewResource(), "auth0_organization": organization.NewResource(), + "auth0_organization_client_grant": organization.NewOrganizationClientGrantResource(), "auth0_organization_connection": organization.NewConnectionResource(), "auth0_organization_connections": organization.NewConnectionsResource(), "auth0_organization_member": organization.NewMemberResource(), diff --git a/test/data/recordings/TestAccClientWithDefaultOrganization.yaml b/test/data/recordings/TestAccClientWithDefaultOrganization.yaml index 9dd529c57..ca1f148a1 100644 --- a/test/data/recordings/TestAccClientWithDefaultOrganization.yaml +++ b/test/data/recordings/TestAccClientWithDefaultOrganization.yaml @@ -30,13 +30,13 @@ interactions: trailer: {} content_length: 73 uncompressed: false - body: '{"id":"org_dPrpVR1m8M0wXXq6","display_name":"temp-org","name":"temp-org"}' + body: '{"id":"org_oDQi2ms442DZnRue","display_name":"temp-org","name":"temp-org"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 378.650583ms + duration: 352.763875ms - id: 1 request: proto: HTTP/1.1 @@ -55,7 +55,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_dPrpVR1m8M0wXXq6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_oDQi2ms442DZnRue method: GET response: proto: HTTP/2.0 @@ -65,13 +65,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_dPrpVR1m8M0wXXq6","name":"temp-org","display_name":"temp-org"}' + body: '{"id":"org_oDQi2ms442DZnRue","name":"temp-org","display_name":"temp-org"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 343.328875ms + duration: 377.883625ms - id: 2 request: proto: HTTP/1.1 @@ -100,13 +100,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_dPrpVR1m8M0wXXq6","name":"temp-org","display_name":"temp-org"}' + body: '{"id":"org_oDQi2ms442DZnRue","name":"temp-org","display_name":"temp-org"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 370.725667ms + duration: 338.117875ms - id: 3 request: proto: HTTP/1.1 @@ -125,7 +125,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_dPrpVR1m8M0wXXq6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_oDQi2ms442DZnRue/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -141,7 +141,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 354.169375ms + duration: 344.316584ms - id: 4 request: proto: HTTP/1.1 @@ -160,7 +160,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_dPrpVR1m8M0wXXq6/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_oDQi2ms442DZnRue/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -176,8 +176,43 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 339.342542ms + duration: 334.236042ms - id: 5 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_oDQi2ms442DZnRue/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 359.380417ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -189,7 +224,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","default_organization":{"flows":["client_credentials"],"organization_id":"org_dPrpVR1m8M0wXXq6"}} + {"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","default_organization":{"flows":["client_credentials"],"organization_id":"org_oDQi2ms442DZnRue"}} form: {} headers: Content-Type: @@ -206,14 +241,14 @@ interactions: trailer: {} content_length: -1 uncompressed: false - body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"default_organization":{"flows":["client_credentials"],"organization_id":"org_dPrpVR1m8M0wXXq6"}}' + body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"default_organization":{"flows":["client_credentials"],"organization_id":"org_oDQi2ms442DZnRue"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 604.857542ms - - id: 6 + duration: 494.299333ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -231,7 +266,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI method: GET response: proto: HTTP/2.0 @@ -241,14 +276,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"default_organization":{"flows":["client_credentials"],"organization_id":"org_dPrpVR1m8M0wXXq6"}}' + body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"default_organization":{"flows":["client_credentials"],"organization_id":"org_oDQi2ms442DZnRue"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 324.482083ms - - id: 7 + duration: 361.364709ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -276,14 +311,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_dPrpVR1m8M0wXXq6","name":"temp-org","display_name":"temp-org"}' + body: '{"id":"org_oDQi2ms442DZnRue","name":"temp-org","display_name":"temp-org"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 323.44225ms - - id: 8 + duration: 332.953583ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -301,7 +336,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_dPrpVR1m8M0wXXq6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_oDQi2ms442DZnRue/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -317,8 +352,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 356.466917ms - - id: 9 + duration: 333.798125ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -336,7 +371,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_dPrpVR1m8M0wXXq6/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_oDQi2ms442DZnRue/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -352,8 +387,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 341.36775ms - - id: 10 + duration: 364.938333ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -371,7 +406,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_dPrpVR1m8M0wXXq6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_oDQi2ms442DZnRue/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -381,14 +416,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_dPrpVR1m8M0wXXq6","name":"temp-org","display_name":"temp-org"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 343.33975ms - - id: 11 + duration: 355.734792ms + - id: 12 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_oDQi2ms442DZnRue + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_oDQi2ms442DZnRue","name":"temp-org","display_name":"temp-org"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 340.801458ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -416,14 +486,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_dPrpVR1m8M0wXXq6","name":"temp-org","display_name":"temp-org"}' + body: '{"id":"org_oDQi2ms442DZnRue","name":"temp-org","display_name":"temp-org"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 323.056542ms - - id: 12 + duration: 336.243708ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -441,7 +511,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_dPrpVR1m8M0wXXq6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_oDQi2ms442DZnRue/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -457,8 +527,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 314.55ms - - id: 13 + duration: 312.807125ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -476,7 +546,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_dPrpVR1m8M0wXXq6/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_oDQi2ms442DZnRue/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -492,8 +562,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 345.482292ms - - id: 14 + duration: 338.957167ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -511,7 +581,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_oDQi2ms442DZnRue/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -521,14 +591,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"default_organization":{"flows":["client_credentials"],"organization_id":"org_dPrpVR1m8M0wXXq6"}}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 340.4985ms - - id: 15 + duration: 332.254792ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -546,7 +616,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_dPrpVR1m8M0wXXq6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI method: GET response: proto: HTTP/2.0 @@ -556,14 +626,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_dPrpVR1m8M0wXXq6","name":"temp-org","display_name":"temp-org"}' + body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"default_organization":{"flows":["client_credentials"],"organization_id":"org_oDQi2ms442DZnRue"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 326.948125ms - - id: 16 + duration: 318.040125ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -581,7 +651,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI method: GET response: proto: HTTP/2.0 @@ -591,14 +661,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"default_organization":{"flows":["client_credentials"],"organization_id":"org_dPrpVR1m8M0wXXq6"}}' + body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"default_organization":{"flows":["client_credentials"],"organization_id":"org_oDQi2ms442DZnRue"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 341.75475ms - - id: 17 + duration: 319.649667ms + - id: 19 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_oDQi2ms442DZnRue + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_oDQi2ms442DZnRue","name":"temp-org","display_name":"temp-org"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 542.483083ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -627,14 +732,14 @@ interactions: trailer: {} content_length: 81 uncompressed: false - body: '{"id":"org_q4hg2b1zM3Vp4dKz","display_name":"temp-new-org","name":"temp-new-org"}' + body: '{"id":"org_A3uV7nPXAXvJGTFB","display_name":"temp-new-org","name":"temp-new-org"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 328.238916ms - - id: 18 + duration: 335.278084ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -652,7 +757,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_dPrpVR1m8M0wXXq6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_oDQi2ms442DZnRue method: DELETE response: proto: HTTP/2.0 @@ -668,8 +773,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 379.584958ms - - id: 19 + duration: 337.173209ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -687,7 +792,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_q4hg2b1zM3Vp4dKz + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_A3uV7nPXAXvJGTFB method: GET response: proto: HTTP/2.0 @@ -697,14 +802,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_q4hg2b1zM3Vp4dKz","name":"temp-new-org","display_name":"temp-new-org"}' + body: '{"id":"org_A3uV7nPXAXvJGTFB","name":"temp-new-org","display_name":"temp-new-org"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 316.856375ms - - id: 20 + duration: 351.144583ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -732,14 +837,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_q4hg2b1zM3Vp4dKz","name":"temp-new-org","display_name":"temp-new-org"}' + body: '{"id":"org_A3uV7nPXAXvJGTFB","name":"temp-new-org","display_name":"temp-new-org"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 699.503333ms - - id: 21 + duration: 333.180833ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -757,7 +862,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_q4hg2b1zM3Vp4dKz/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_A3uV7nPXAXvJGTFB/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -773,8 +878,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.599917ms - - id: 22 + duration: 318.967709ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -792,7 +897,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_q4hg2b1zM3Vp4dKz/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_A3uV7nPXAXvJGTFB/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -808,8 +913,43 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 341.503709ms - - id: 23 + duration: 315.107ms + - id: 26 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_A3uV7nPXAXvJGTFB/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 346.266292ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -821,14 +961,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","default_organization":{"flows":["client_credentials"],"organization_id":"org_q4hg2b1zM3Vp4dKz"}} + {"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","default_organization":{"flows":["client_credentials"],"organization_id":"org_A3uV7nPXAXvJGTFB"}} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI method: PATCH response: proto: HTTP/2.0 @@ -838,14 +978,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"default_organization":{"flows":["client_credentials"],"organization_id":"org_q4hg2b1zM3Vp4dKz"}}' + body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"default_organization":{"flows":["client_credentials"],"organization_id":"org_A3uV7nPXAXvJGTFB"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 372.165417ms - - id: 24 + duration: 351.151875ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -863,7 +1003,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI method: GET response: proto: HTTP/2.0 @@ -873,14 +1013,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"default_organization":{"flows":["client_credentials"],"organization_id":"org_q4hg2b1zM3Vp4dKz"}}' + body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"default_organization":{"flows":["client_credentials"],"organization_id":"org_A3uV7nPXAXvJGTFB"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 663.170166ms - - id: 25 + duration: 317.653958ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -908,14 +1048,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_q4hg2b1zM3Vp4dKz","name":"temp-new-org","display_name":"temp-new-org"}' + body: '{"id":"org_A3uV7nPXAXvJGTFB","name":"temp-new-org","display_name":"temp-new-org"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 330.746583ms - - id: 26 + duration: 350.955458ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -933,7 +1073,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_q4hg2b1zM3Vp4dKz/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_A3uV7nPXAXvJGTFB/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -949,8 +1089,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 334.561083ms - - id: 27 + duration: 314.580167ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -968,7 +1108,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_q4hg2b1zM3Vp4dKz/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_A3uV7nPXAXvJGTFB/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -984,8 +1124,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 324.352ms - - id: 28 + duration: 340.051291ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1003,7 +1143,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_q4hg2b1zM3Vp4dKz + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_A3uV7nPXAXvJGTFB/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1013,14 +1153,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_q4hg2b1zM3Vp4dKz","name":"temp-new-org","display_name":"temp-new-org"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.341417ms - - id: 29 + duration: 316.66825ms + - id: 33 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_A3uV7nPXAXvJGTFB + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_A3uV7nPXAXvJGTFB","name":"temp-new-org","display_name":"temp-new-org"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 323.192042ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1048,14 +1223,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_q4hg2b1zM3Vp4dKz","name":"temp-new-org","display_name":"temp-new-org"}' + body: '{"id":"org_A3uV7nPXAXvJGTFB","name":"temp-new-org","display_name":"temp-new-org"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 375.709834ms - - id: 30 + duration: 358.60325ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1073,7 +1248,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_q4hg2b1zM3Vp4dKz/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_A3uV7nPXAXvJGTFB/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1089,8 +1264,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 325.143375ms - - id: 31 + duration: 309.522083ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1108,7 +1283,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_q4hg2b1zM3Vp4dKz/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_A3uV7nPXAXvJGTFB/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1124,8 +1299,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 540.496375ms - - id: 32 + duration: 385.118792ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1143,7 +1318,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_A3uV7nPXAXvJGTFB/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1153,14 +1328,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"default_organization":{"flows":["client_credentials"],"organization_id":"org_q4hg2b1zM3Vp4dKz"}}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 356.207ms - - id: 33 + duration: 315.700791ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1178,7 +1353,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_q4hg2b1zM3Vp4dKz + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI method: GET response: proto: HTTP/2.0 @@ -1188,14 +1363,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_q4hg2b1zM3Vp4dKz","name":"temp-new-org","display_name":"temp-new-org"}' + body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"default_organization":{"flows":["client_credentials"],"organization_id":"org_A3uV7nPXAXvJGTFB"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.019084ms - - id: 34 + duration: 403.817417ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1213,7 +1388,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI method: GET response: proto: HTTP/2.0 @@ -1223,14 +1398,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"default_organization":{"flows":["client_credentials"],"organization_id":"org_q4hg2b1zM3Vp4dKz"}}' + body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"default_organization":{"flows":["client_credentials"],"organization_id":"org_A3uV7nPXAXvJGTFB"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.475ms - - id: 35 + duration: 350.687958ms + - id: 40 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_A3uV7nPXAXvJGTFB + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_A3uV7nPXAXvJGTFB","name":"temp-new-org","display_name":"temp-new-org"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 351.792708ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -1248,7 +1458,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_q4hg2b1zM3Vp4dKz + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_A3uV7nPXAXvJGTFB method: DELETE response: proto: HTTP/2.0 @@ -1264,8 +1474,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 301.706584ms - - id: 36 + duration: 327.393833ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -1284,7 +1494,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI method: PATCH response: proto: HTTP/2.0 @@ -1294,14 +1504,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"default_organization":{"flows":["client_credentials"],"organization_id":"org_q4hg2b1zM3Vp4dKz"}}' + body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"default_organization":{"flows":["client_credentials"],"organization_id":"org_A3uV7nPXAXvJGTFB"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 339.009083ms - - id: 37 + duration: 322.525208ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -1320,7 +1530,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI method: PATCH response: proto: HTTP/2.0 @@ -1330,14 +1540,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 424.610708ms - - id: 38 + duration: 351.02525ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -1355,7 +1565,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI method: GET response: proto: HTTP/2.0 @@ -1365,14 +1575,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 332.0195ms - - id: 39 + duration: 351.496125ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -1390,7 +1600,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI method: GET response: proto: HTTP/2.0 @@ -1400,14 +1610,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 321.18775ms - - id: 40 + duration: 336.264875ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -1425,7 +1635,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI method: GET response: proto: HTTP/2.0 @@ -1435,14 +1645,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 355.791666ms - - id: 41 + duration: 337.647834ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -1461,7 +1671,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI method: PATCH response: proto: HTTP/2.0 @@ -1477,8 +1687,8 @@ interactions: - application/json; charset=utf-8 status: 400 Bad Request code: 400 - duration: 335.359875ms - - id: 42 + duration: 311.66375ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -1496,7 +1706,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI method: GET response: proto: HTTP/2.0 @@ -1506,14 +1716,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - DefaultOrganization - TestAccClientWithDefaultOrganization","client_id":"YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.32539725s - - id: 43 + duration: 353.559084ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -1532,7 +1742,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI method: PATCH response: proto: HTTP/2.0 @@ -1548,8 +1758,8 @@ interactions: - application/json; charset=utf-8 status: 400 Bad Request code: 400 - duration: 341.599708ms - - id: 44 + duration: 318.588709ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -1567,7 +1777,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/ISmgFMkTmKUxEUjZRoqsEMRG4NChhxU9 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/YuiPhGnmGKY00LDbLM4V1LtDszHUNpPI method: DELETE response: proto: HTTP/2.0 @@ -1583,4 +1793,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 381.433125ms + duration: 407.186708ms diff --git a/test/data/recordings/TestAccDataSourceOrganization.yaml b/test/data/recordings/TestAccDataSourceOrganization.yaml index a41847ea7..a8721aad1 100644 --- a/test/data/recordings/TestAccDataSourceOrganization.yaml +++ b/test/data/recordings/TestAccDataSourceOrganization.yaml @@ -6,20 +6,19 @@ interactions: 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/1.4.1 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XXXXXXXXXXXXXXXX method: GET response: @@ -36,7 +35,7 @@ interactions: - application/json; charset=utf-8 status: 404 Not Found code: 404 - duration: 293.035166ms + duration: 396.972375ms - id: 1 request: proto: HTTP/1.1 @@ -55,7 +54,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users method: POST response: @@ -66,33 +65,32 @@ interactions: trailer: {} content_length: 605 uncompressed: false - body: '{"created_at":"2024-05-27T13:25:36.528Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665489d0e539b35aea957717","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T13:25:36.528Z","user_id":"auth0|665489d0e539b35aea957717","username":"testaccdatasourceorganization"}' + body: '{"created_at":"2024-09-20T15:42:39.706Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66ed97efec07da60c9871824","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-20T15:42:39.706Z","user_id":"auth0|66ed97efec07da60c9871824","username":"testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 470.867333ms + duration: 575.491542ms - id: 2 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665489d0e539b35aea957717 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66ed97efec07da60c9871824 method: GET response: proto: HTTP/2.0 @@ -102,13 +100,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T13:25:36.528Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665489d0e539b35aea957717","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T13:25:36.528Z","user_id":"auth0|665489d0e539b35aea957717","username":"testaccdatasourceorganization"}' + body: '{"created_at":"2024-09-20T15:42:39.706Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66ed97efec07da60c9871824","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-20T15:42:39.706Z","user_id":"auth0|66ed97efec07da60c9871824","username":"testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.755542ms + duration: 363.978709ms - id: 3 request: proto: HTTP/1.1 @@ -127,7 +125,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections method: POST response: @@ -138,33 +136,32 @@ interactions: trailer: {} content_length: 568 uncompressed: false - body: '{"id":"con_TgwVgIvmJWmge5ig","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' + body: '{"id":"con_XrpbFzLqDSZDiezR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 358.404333ms + duration: 449.325584ms - id: 4 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_TgwVgIvmJWmge5ig + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_XrpbFzLqDSZDiezR method: GET response: proto: HTTP/2.0 @@ -174,13 +171,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_TgwVgIvmJWmge5ig","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' + body: '{"id":"con_XrpbFzLqDSZDiezR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 329.074792ms + duration: 353.169709ms - id: 5 request: proto: HTTP/1.1 @@ -199,7 +196,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations method: POST response: @@ -210,33 +207,32 @@ interactions: trailer: {} content_length: 130 uncompressed: false - body: '{"id":"org_Xcv81ivTZXE31BmK","display_name":"Acme Inc. testaccdatasourceorganization","name":"test-testaccdatasourceorganization"}' + body: '{"id":"org_nVRtYv9NIfbyW5oT","display_name":"Acme Inc. testaccdatasourceorganization","name":"test-testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 283.261916ms + duration: 342.025875ms - id: 6 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT method: GET response: proto: HTTP/2.0 @@ -246,33 +242,33 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Xcv81ivTZXE31BmK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"id":"org_nVRtYv9NIfbyW5oT","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 314.231917ms + duration: 354.7595ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 76 + content_length: 41 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"connection_id":"con_TgwVgIvmJWmge5ig","assign_membership_on_login":false} + {"connection_id":"con_XrpbFzLqDSZDiezR"} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/enabled_connections + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/enabled_connections method: POST response: proto: HTTP/2.0 @@ -280,35 +276,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 197 + content_length: 223 uncompressed: false - body: '{"connection_id":"con_TgwVgIvmJWmge5ig","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' + body: '{"connection_id":"con_XrpbFzLqDSZDiezR","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 342.567458ms + duration: 326.395333ms - id: 8 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/enabled_connections/con_TgwVgIvmJWmge5ig + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/enabled_connections/con_XrpbFzLqDSZDiezR method: GET response: proto: HTTP/2.0 @@ -318,13 +313,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_TgwVgIvmJWmge5ig","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' + body: '{"connection_id":"con_XrpbFzLqDSZDiezR","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.325208ms + duration: 517.522084ms - id: 9 request: proto: HTTP/1.1 @@ -337,14 +332,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|665489d0e539b35aea957717"]} + {"members":["auth0|66ed97efec07da60c9871824"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/members method: POST response: proto: HTTP/2.0 @@ -360,27 +355,26 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 345.952375ms + duration: 389.498666ms - id: 10 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -390,33 +384,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665489d0e539b35aea957717"}],"next":"MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3"}' + body: '{"members":[{"user_id":"auth0|66ed97efec07da60c9871824"}],"next":"MjAyNC0wOS0yMCAxNTo0Mjo0Mi44NTMwMDBVVEMsYXV0aDB8NjZlZDk3ZWZlYzA3ZGE2MGM5ODcxODI0"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 339.251166ms + duration: 486.846709ms - id: 11 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&from=MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/members?fields=user_id&from=MjAyNC0wOS0yMCAxNTo0Mjo0Mi44NTMwMDBVVEMsYXV0aDB8NjZlZDk3ZWZlYzA3ZGE2MGM5ODcxODI0&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -432,26 +425,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 353.451708ms + duration: 355.935833ms - id: 12 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/1.4.1 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/name/test-testaccdatasourceorganization method: GET response: @@ -462,33 +454,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Xcv81ivTZXE31BmK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"id":"org_nVRtYv9NIfbyW5oT","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 339.891125ms + duration: 432.490583ms - id: 13 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -498,33 +489,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_TgwVgIvmJWmge5ig","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_XrpbFzLqDSZDiezR","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 339.775833ms + duration: 378.8485ms - id: 14 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -534,33 +524,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665489d0e539b35aea957717"}],"next":"MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3"}' + body: '{"members":[{"user_id":"auth0|66ed97efec07da60c9871824"}],"next":"MjAyNC0wOS0yMCAxNTo0Mjo0Mi44NTMwMDBVVEMsYXV0aDB8NjZlZDk3ZWZlYzA3ZGE2MGM5ODcxODI0"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 351.529916ms + duration: 449.57075ms - id: 15 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&from=MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/members?fields=user_id&from=MjAyNC0wOS0yMCAxNTo0Mjo0Mi44NTMwMDBVVEMsYXV0aDB8NjZlZDk3ZWZlYzA3ZGE2MGM5ODcxODI0&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -576,27 +565,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 353.304792ms + duration: 340.151833ms - id: 16 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/name/test-testaccdatasourceorganization + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -606,33 +594,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Xcv81ivTZXE31BmK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 789.038333ms + duration: 338.893292ms - id: 17 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/name/test-testaccdatasourceorganization method: GET response: proto: HTTP/2.0 @@ -642,33 +629,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_TgwVgIvmJWmge5ig","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_nVRtYv9NIfbyW5oT","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.678208ms + duration: 357.1585ms - id: 18 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -678,33 +664,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665489d0e539b35aea957717"}],"next":"MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3"}' + body: '{"enabled_connections":[{"connection_id":"con_XrpbFzLqDSZDiezR","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.181541ms + duration: 347.615791ms - 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&from=MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -712,35 +697,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|66ed97efec07da60c9871824"}],"next":"MjAyNC0wOS0yMCAxNTo0Mjo0Mi44NTMwMDBVVEMsYXV0aDB8NjZlZDk3ZWZlYzA3ZGE2MGM5ODcxODI0"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 318.710417ms + duration: 338.408375ms - id: 20 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665489d0e539b35aea957717 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/members?fields=user_id&from=MjAyNC0wOS0yMCAxNTo0Mjo0Mi44NTMwMDBVVEMsYXV0aDB8NjZlZDk3ZWZlYzA3ZGE2MGM5ODcxODI0&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -748,35 +732,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T13:25:36.528Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665489d0e539b35aea957717","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T13:25:36.528Z","user_id":"auth0|665489d0e539b35aea957717","username":"testaccdatasourceorganization"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 314.360792ms + duration: 547.371ms - 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_TgwVgIvmJWmge5ig + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -786,33 +769,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_TgwVgIvmJWmge5ig","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.299458ms + duration: 348.275625ms - id: 22 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66ed97efec07da60c9871824 method: GET response: proto: HTTP/2.0 @@ -822,33 +804,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Xcv81ivTZXE31BmK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"created_at":"2024-09-20T15:42:39.706Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66ed97efec07da60c9871824","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-20T15:42:39.706Z","user_id":"auth0|66ed97efec07da60c9871824","username":"testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.317625ms + duration: 392.287375ms - id: 23 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/enabled_connections/con_TgwVgIvmJWmge5ig + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_XrpbFzLqDSZDiezR method: GET response: proto: HTTP/2.0 @@ -858,33 +839,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_TgwVgIvmJWmge5ig","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' + body: '{"id":"con_XrpbFzLqDSZDiezR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.841458ms + duration: 334.522958ms - id: 24 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT method: GET response: proto: HTTP/2.0 @@ -894,33 +874,102 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665489d0e539b35aea957717"}],"next":"MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3"}' + body: '{"id":"org_nVRtYv9NIfbyW5oT","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 324.054458ms + duration: 318.013125ms - id: 25 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&from=MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/enabled_connections/con_XrpbFzLqDSZDiezR + 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_XrpbFzLqDSZDiezR","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 348.028417ms + - id: 26 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=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|66ed97efec07da60c9871824"}],"next":"MjAyNC0wOS0yMCAxNTo0Mjo0Mi44NTMwMDBVVEMsYXV0aDB8NjZlZDk3ZWZlYzA3ZGE2MGM5ODcxODI0"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 368.693208ms + - id: 27 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/members?fields=user_id&from=MjAyNC0wOS0yMCAxNTo0Mjo0Mi44NTMwMDBVVEMsYXV0aDB8NjZlZDk3ZWZlYzA3ZGE2MGM5ODcxODI0&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -936,26 +985,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.939042ms - - id: 26 + duration: 344.530583ms + - id: 28 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/1.4.1 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/name/test-testaccdatasourceorganization method: GET response: @@ -966,33 +1014,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Xcv81ivTZXE31BmK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"id":"org_nVRtYv9NIfbyW5oT","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 317.194917ms - - id: 27 + duration: 319.51675ms + - id: 29 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1002,33 +1049,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_TgwVgIvmJWmge5ig","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_XrpbFzLqDSZDiezR","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.694833ms - - id: 28 + duration: 363.724709ms + - id: 30 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1038,33 +1084,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665489d0e539b35aea957717"}],"next":"MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3"}' + body: '{"members":[{"user_id":"auth0|66ed97efec07da60c9871824"}],"next":"MjAyNC0wOS0yMCAxNTo0Mjo0Mi44NTMwMDBVVEMsYXV0aDB8NjZlZDk3ZWZlYzA3ZGE2MGM5ODcxODI0"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.824833ms - - id: 29 + duration: 357.753375ms + - id: 31 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&from=MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/members?fields=user_id&from=MjAyNC0wOS0yMCAxNTo0Mjo0Mi44NTMwMDBVVEMsYXV0aDB8NjZlZDk3ZWZlYzA3ZGE2MGM5ODcxODI0&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1080,27 +1125,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 391.491958ms - - id: 30 + duration: 335.319375ms + - id: 32 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665489d0e539b35aea957717 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1110,33 +1154,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T13:25:36.528Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665489d0e539b35aea957717","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T13:25:36.528Z","user_id":"auth0|665489d0e539b35aea957717","username":"testaccdatasourceorganization"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 315.265292ms - - id: 31 + duration: 372.251583ms + - id: 33 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_TgwVgIvmJWmge5ig + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66ed97efec07da60c9871824 method: GET response: proto: HTTP/2.0 @@ -1146,33 +1189,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_TgwVgIvmJWmge5ig","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' + body: '{"created_at":"2024-09-20T15:42:39.706Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66ed97efec07da60c9871824","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-20T15:42:39.706Z","user_id":"auth0|66ed97efec07da60c9871824","username":"testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.896208ms - - id: 32 + duration: 344.874167ms + - id: 34 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_XrpbFzLqDSZDiezR method: GET response: proto: HTTP/2.0 @@ -1182,33 +1224,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Xcv81ivTZXE31BmK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"id":"con_XrpbFzLqDSZDiezR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.762167ms - - id: 33 + duration: 429.747334ms + - id: 35 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/enabled_connections/con_TgwVgIvmJWmge5ig + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT method: GET response: proto: HTTP/2.0 @@ -1218,33 +1259,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_TgwVgIvmJWmge5ig","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' + body: '{"id":"org_nVRtYv9NIfbyW5oT","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 314.345916ms - - id: 34 + duration: 538.962834ms + - id: 36 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/enabled_connections/con_XrpbFzLqDSZDiezR method: GET response: proto: HTTP/2.0 @@ -1254,33 +1294,67 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665489d0e539b35aea957717"}],"next":"MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3"}' + body: '{"connection_id":"con_XrpbFzLqDSZDiezR","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.990791ms - - id: 35 + duration: 332.486709ms + - id: 37 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=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|66ed97efec07da60c9871824"}],"next":"MjAyNC0wOS0yMCAxNTo0Mjo0Mi44NTMwMDBVVEMsYXV0aDB8NjZlZDk3ZWZlYzA3ZGE2MGM5ODcxODI0"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 349.30725ms + - id: 38 + 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&from=MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/members?fields=user_id&from=MjAyNC0wOS0yMCAxNTo0Mjo0Mi44NTMwMDBVVEMsYXV0aDB8NjZlZDk3ZWZlYzA3ZGE2MGM5ODcxODI0&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1296,27 +1370,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 384.668958ms - - id: 36 + duration: 319.490042ms + - id: 39 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT method: GET response: proto: HTTP/2.0 @@ -1326,33 +1399,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Xcv81ivTZXE31BmK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"id":"org_nVRtYv9NIfbyW5oT","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.815084ms - - id: 37 + duration: 341.935625ms + - id: 40 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1362,33 +1434,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_TgwVgIvmJWmge5ig","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_XrpbFzLqDSZDiezR","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.717375ms - - id: 38 + duration: 889.815584ms + - id: 41 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1398,33 +1469,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665489d0e539b35aea957717"}],"next":"MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3"}' + body: '{"members":[{"user_id":"auth0|66ed97efec07da60c9871824"}],"next":"MjAyNC0wOS0yMCAxNTo0Mjo0Mi44NTMwMDBVVEMsYXV0aDB8NjZlZDk3ZWZlYzA3ZGE2MGM5ODcxODI0"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.588667ms - - id: 39 + duration: 342.417125ms + - id: 42 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&from=MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/members?fields=user_id&from=MjAyNC0wOS0yMCAxNTo0Mjo0Mi44NTMwMDBVVEMsYXV0aDB8NjZlZDk3ZWZlYzA3ZGE2MGM5ODcxODI0&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1440,27 +1510,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 470.711125ms - - id: 40 + duration: 323.758083ms + - id: 43 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1470,33 +1539,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Xcv81ivTZXE31BmK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 346.812541ms - - id: 41 + duration: 375.963542ms + - id: 44 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT method: GET response: proto: HTTP/2.0 @@ -1506,33 +1574,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_TgwVgIvmJWmge5ig","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_nVRtYv9NIfbyW5oT","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.041417ms - - id: 42 + duration: 378.417625ms + - id: 45 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1542,33 +1609,67 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665489d0e539b35aea957717"}],"next":"MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3"}' + body: '{"enabled_connections":[{"connection_id":"con_XrpbFzLqDSZDiezR","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 315.022708ms - - id: 43 + duration: 337.211791ms + - id: 46 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&from=MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=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|66ed97efec07da60c9871824"}],"next":"MjAyNC0wOS0yMCAxNTo0Mjo0Mi44NTMwMDBVVEMsYXV0aDB8NjZlZDk3ZWZlYzA3ZGE2MGM5ODcxODI0"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 333.417208ms + - id: 47 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/members?fields=user_id&from=MjAyNC0wOS0yMCAxNTo0Mjo0Mi44NTMwMDBVVEMsYXV0aDB8NjZlZDk3ZWZlYzA3ZGE2MGM5ODcxODI0&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1584,27 +1685,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 393.362416ms - - id: 44 + duration: 334.735375ms + - id: 48 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665489d0e539b35aea957717 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1614,33 +1714,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T13:25:36.528Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665489d0e539b35aea957717","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T13:25:36.528Z","user_id":"auth0|665489d0e539b35aea957717","username":"testaccdatasourceorganization"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 387.979ms - - id: 45 + duration: 354.506666ms + - id: 49 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_TgwVgIvmJWmge5ig + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66ed97efec07da60c9871824 method: GET response: proto: HTTP/2.0 @@ -1650,33 +1749,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_TgwVgIvmJWmge5ig","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' + body: '{"created_at":"2024-09-20T15:42:39.706Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66ed97efec07da60c9871824","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-20T15:42:39.706Z","user_id":"auth0|66ed97efec07da60c9871824","username":"testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 340.740875ms - - id: 46 + duration: 343.176791ms + - id: 50 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_XrpbFzLqDSZDiezR method: GET response: proto: HTTP/2.0 @@ -1686,33 +1784,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Xcv81ivTZXE31BmK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"id":"con_XrpbFzLqDSZDiezR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 338.510625ms - - id: 47 + duration: 315.266375ms + - id: 51 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/enabled_connections/con_TgwVgIvmJWmge5ig + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT method: GET response: proto: HTTP/2.0 @@ -1722,33 +1819,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_TgwVgIvmJWmge5ig","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' + body: '{"id":"org_nVRtYv9NIfbyW5oT","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 350.497791ms - - id: 48 + duration: 353.658958ms + - id: 52 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/enabled_connections/con_XrpbFzLqDSZDiezR method: GET response: proto: HTTP/2.0 @@ -1758,33 +1854,67 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665489d0e539b35aea957717"}],"next":"MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3"}' + body: '{"connection_id":"con_XrpbFzLqDSZDiezR","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 856.483333ms - - id: 49 + duration: 339.613917ms + - id: 53 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&from=MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=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|66ed97efec07da60c9871824"}],"next":"MjAyNC0wOS0yMCAxNTo0Mjo0Mi44NTMwMDBVVEMsYXV0aDB8NjZlZDk3ZWZlYzA3ZGE2MGM5ODcxODI0"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 374.589958ms + - id: 54 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/members?fields=user_id&from=MjAyNC0wOS0yMCAxNTo0Mjo0Mi44NTMwMDBVVEMsYXV0aDB8NjZlZDk3ZWZlYzA3ZGE2MGM5ODcxODI0&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1800,27 +1930,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.259625ms - - id: 50 + duration: 365.3795ms + - id: 55 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT method: GET response: proto: HTTP/2.0 @@ -1830,33 +1959,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Xcv81ivTZXE31BmK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"id":"org_nVRtYv9NIfbyW5oT","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 468.058ms - - id: 51 + duration: 332.899333ms + - id: 56 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1866,33 +1994,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_TgwVgIvmJWmge5ig","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_XrpbFzLqDSZDiezR","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 318.744416ms - - id: 52 + duration: 380.058417ms + - id: 57 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1902,33 +2029,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665489d0e539b35aea957717"}],"next":"MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3"}' + body: '{"members":[{"user_id":"auth0|66ed97efec07da60c9871824"}],"next":"MjAyNC0wOS0yMCAxNTo0Mjo0Mi44NTMwMDBVVEMsYXV0aDB8NjZlZDk3ZWZlYzA3ZGE2MGM5ODcxODI0"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 318.572709ms - - id: 53 + duration: 356.604333ms + - id: 58 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&from=MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/members?fields=user_id&from=MjAyNC0wOS0yMCAxNTo0Mjo0Mi44NTMwMDBVVEMsYXV0aDB8NjZlZDk3ZWZlYzA3ZGE2MGM5ODcxODI0&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1944,8 +2070,43 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.324084ms - - id: 54 + duration: 324.60975ms + - id: 59 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 347.669083ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -1957,14 +2118,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|665489d0e539b35aea957717"]} + {"members":["auth0|66ed97efec07da60c9871824"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/members method: DELETE response: proto: HTTP/2.0 @@ -1980,8 +2141,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 312.450959ms - - id: 55 + duration: 352.00175ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -1998,8 +2159,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/enabled_connections/con_TgwVgIvmJWmge5ig + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT/enabled_connections/con_XrpbFzLqDSZDiezR method: DELETE response: proto: HTTP/2.0 @@ -2015,8 +2176,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 299.316875ms - - id: 56 + duration: 346.081375ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -2033,8 +2194,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_nVRtYv9NIfbyW5oT method: DELETE response: proto: HTTP/2.0 @@ -2050,8 +2211,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 314.632334ms - - id: 57 + duration: 333.502209ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -2068,8 +2229,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_TgwVgIvmJWmge5ig + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_XrpbFzLqDSZDiezR method: DELETE response: proto: HTTP/2.0 @@ -2079,14 +2240,14 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2024-05-27T13:25:59.248Z"}' + body: '{"deleted_at":"2024-09-20T15:43:06.348Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 330.285833ms - - id: 58 + duration: 383.432541ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -2103,8 +2264,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665489d0e539b35aea957717 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66ed97efec07da60c9871824 method: DELETE response: proto: HTTP/2.0 @@ -2120,4 +2281,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 310.724833ms + duration: 361.723ms diff --git a/test/data/recordings/TestAccOrganizationClientGrant.yaml b/test/data/recordings/TestAccOrganizationClientGrant.yaml new file mode 100644 index 000000000..4bcacd323 --- /dev/null +++ b/test/data/recordings/TestAccOrganizationClientGrant.yaml @@ -0,0 +1,1271 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 84 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"test-org-acceptance-testing","display_name":"Test Org Acceptance Testing"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + 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: 111 + uncompressed: false + body: '{"id":"org_9VJusCS7yMLJUqVx","display_name":"Test Org Acceptance Testing","name":"test-org-acceptance-testing"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 237.090458ms + - id: 1 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_9VJusCS7yMLJUqVx + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_9VJusCS7yMLJUqVx","name":"test-org-acceptance-testing","display_name":"Test Org Acceptance Testing"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 168.501792ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 67 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Example API","identifier":"https://api.travel00123.com/"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 258 + uncompressed: false + body: '{"id":"66f5c900c12df5490e81bb31","name":"Example API","identifier":"https://api.travel00123.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 204.369583ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 31 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"authorization_details":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66f5c900c12df5490e81bb31 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66f5c900c12df5490e81bb31","name":"Example API","identifier":"https://api.travel00123.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 159.316292ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 26 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"token_encryption":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66f5c900c12df5490e81bb31 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66f5c900c12df5490e81bb31","name":"Example API","identifier":"https://api.travel00123.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 125.282583ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 29 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"proof_of_possession":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66f5c900c12df5490e81bb31 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66f5c900c12df5490e81bb31","name":"Example API","identifier":"https://api.travel00123.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 138.780875ms + - id: 6 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66f5c900c12df5490e81bb31 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66f5c900c12df5490e81bb31","name":"Example API","identifier":"https://api.travel00123.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 158.934666ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 149 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"test_client","organization_usage":"allow","default_organization":{"flows":["client_credentials"],"organization_id":"org_9VJusCS7yMLJUqVx"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: false + body: '{"name":"test_client","client_id":"pSxP9RbyOmWpijS0lkRiOIzGqEocLsz1","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"organization_usage":"allow","default_organization":{"flows":["client_credentials"],"organization_id":"org_9VJusCS7yMLJUqVx"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 304.745583ms + - id: 8 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/pSxP9RbyOmWpijS0lkRiOIzGqEocLsz1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"test_client","client_id":"pSxP9RbyOmWpijS0lkRiOIzGqEocLsz1","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"organization_usage":"allow","default_organization":{"flows":["client_credentials"],"organization_id":"org_9VJusCS7yMLJUqVx"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 152.871291ms + - id: 9 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants?audience=https%3A%2F%2Fapi.travel00123.com%2F&client_id=pSxP9RbyOmWpijS0lkRiOIzGqEocLsz1&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: '{"total":0,"start":0,"limit":50,"client_grants":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 156.064417ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 214 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"client_id":"pSxP9RbyOmWpijS0lkRiOIzGqEocLsz1","audience":"https://api.travel00123.com/","scope":["create:organization_client_grants","create:resource"],"allow_any_organization":true,"organization_usage":"allow"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 241 + uncompressed: false + body: '{"id":"cgr_wdvDb163A7cFXQqz","client_id":"pSxP9RbyOmWpijS0lkRiOIzGqEocLsz1","audience":"https://api.travel00123.com/","scope":["create:organization_client_grants","create:resource"],"organization_usage":"allow","allow_any_organization":true}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 138.185208ms + - id: 11 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants?include_totals=true&page=0&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: '{"total":7,"start":0,"limit":50,"client_grants":[{"id":"cgr_BRwNL8rCTOixv6DU","client_id":"MIToD9xBxaoP4NwHGKo2EJWwSU04Uxod","audience":"https://api.example2.com","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","read:flows_vault_connections","update:flows_vault_connections","delete:flows_vault_connections","create:flows_vault_connections","read:flows_executions","delete:flows_executions","read:connections_options","update:connections_options","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials","read:organization_client_grants","create:organization_client_grants","delete:organization_client_grants","update:device_codes","read:device_codes"],"organization_usage":"allow","allow_any_organization":true},{"id":"cgr_Gh989ryCLAXzmS3y","client_id":"gIJikrYcmSXEhIv9cXEEtoGFj8kPDxUx","audience":"https://api.travel001.com/","scope":["create:organization_client_grants","create:resource"],"organization_usage":"allow","allow_any_organization":true},{"id":"cgr_UWYceavPkwfRPtbf","client_id":"Mt2OyVN7QphPhmFWgJMXtzzethEatko0","audience":"https://terraform-provider-auth0-dev.sus.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:flows_executions","delete:flows_executions","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials","read:organization_client_grants","create:organization_client_grants","delete:organization_client_grants","update:device_codes","read:device_codes"]},{"id":"cgr_fTgG6hZ6DJyXSv2D","client_id":"MIToD9xBxaoP4NwHGKo2EJWwSU04Uxod","audience":"https://api.example.com","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","read:flows_vault_connections","update:flows_vault_connections","delete:flows_vault_connections","create:flows_vault_connections","read:flows_executions","delete:flows_executions","read:connections_options","update:connections_options","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials","read:organization_client_grants","create:organization_client_grants","delete:organization_client_grants","update:device_codes","read:device_codes"],"organization_usage":"allow","allow_any_organization":true},{"id":"cgr_tEnbObhlbCHIkA2C","client_id":"FiUTsAhjzFlxipoMI1hqUX0LK1fpPpjl","audience":"https://api.travel0.com/","scope":["create:organization_client_grants","create:resource"],"organization_usage":"allow","allow_any_organization":true},{"id":"cgr_wdvDb163A7cFXQqz","client_id":"pSxP9RbyOmWpijS0lkRiOIzGqEocLsz1","audience":"https://api.travel00123.com/","scope":["create:organization_client_grants","create:resource"],"organization_usage":"allow","allow_any_organization":true},{"id":"cgr_zV8sbywGQQxCnreD","client_id":"bpViNbMMF1X5J17kaB1jObShEVB81nol","audience":"https://terraform-provider-auth0-dev.sus.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","read:flows_vault_connections","update:flows_vault_connections","delete:flows_vault_connections","create:flows_vault_connections","read:flows_executions","delete:flows_executions","read:connections_options","update:connections_options","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials","read:organization_client_grants","create:organization_client_grants","delete:organization_client_grants","update:device_codes","read:device_codes"]}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 158.774084ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 36 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"grant_id":"cgr_wdvDb163A7cFXQqz"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_9VJusCS7yMLJUqVx/client-grants + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 188 + uncompressed: false + body: '{"grant_id":"cgr_wdvDb163A7cFXQqz","client_id":"pSxP9RbyOmWpijS0lkRiOIzGqEocLsz1","audience":"https://api.travel00123.com/","scope":["create:organization_client_grants","create:resource"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 163.411708ms + - id: 13 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_9VJusCS7yMLJUqVx/client-grants?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: '{"client_grants":[{"id":"cgr_wdvDb163A7cFXQqz","client_id":"pSxP9RbyOmWpijS0lkRiOIzGqEocLsz1","audience":"https://api.travel00123.com/","scope":["create:organization_client_grants","create:resource"],"organization_usage":"allow","allow_any_organization":true}],"start":0,"limit":50,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 150.288709ms + - id: 14 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_9VJusCS7yMLJUqVx + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_9VJusCS7yMLJUqVx","name":"test-org-acceptance-testing","display_name":"Test Org Acceptance Testing"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 136.27875ms + - id: 15 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_9VJusCS7yMLJUqVx/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: 152.500916ms + - id: 16 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_9VJusCS7yMLJUqVx/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 168.309209ms + - id: 17 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_9VJusCS7yMLJUqVx/client-grants?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: '{"client_grants":[{"id":"cgr_wdvDb163A7cFXQqz","client_id":"pSxP9RbyOmWpijS0lkRiOIzGqEocLsz1","audience":"https://api.travel00123.com/","scope":["create:organization_client_grants","create:resource"],"organization_usage":"allow","allow_any_organization":true}],"start":0,"limit":50,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 143.32075ms + - id: 18 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_9VJusCS7yMLJUqVx + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_9VJusCS7yMLJUqVx","name":"test-org-acceptance-testing","display_name":"Test Org Acceptance Testing"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 135.332625ms + - id: 19 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_9VJusCS7yMLJUqVx/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: 180.723375ms + - id: 20 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_9VJusCS7yMLJUqVx/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 121.141209ms + - id: 21 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_9VJusCS7yMLJUqVx/client-grants?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: '{"client_grants":[{"id":"cgr_wdvDb163A7cFXQqz","client_id":"pSxP9RbyOmWpijS0lkRiOIzGqEocLsz1","audience":"https://api.travel00123.com/","scope":["create:organization_client_grants","create:resource"],"organization_usage":"allow","allow_any_organization":true}],"start":0,"limit":50,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 167.06ms + - id: 22 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_9VJusCS7yMLJUqVx + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_9VJusCS7yMLJUqVx","name":"test-org-acceptance-testing","display_name":"Test Org Acceptance Testing"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 131.909ms + - id: 23 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66f5c900c12df5490e81bb31 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66f5c900c12df5490e81bb31","name":"Example API","identifier":"https://api.travel00123.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 295.958125ms + - id: 24 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/pSxP9RbyOmWpijS0lkRiOIzGqEocLsz1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"test_client","client_id":"pSxP9RbyOmWpijS0lkRiOIzGqEocLsz1","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"organization_usage":"allow","default_organization":{"flows":["client_credentials"],"organization_id":"org_9VJusCS7yMLJUqVx"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 145.874875ms + - id: 25 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants?include_totals=true&page=0&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: '{"total":7,"start":0,"limit":50,"client_grants":[{"id":"cgr_BRwNL8rCTOixv6DU","client_id":"MIToD9xBxaoP4NwHGKo2EJWwSU04Uxod","audience":"https://api.example2.com","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","read:flows_vault_connections","update:flows_vault_connections","delete:flows_vault_connections","create:flows_vault_connections","read:flows_executions","delete:flows_executions","read:connections_options","update:connections_options","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials","read:organization_client_grants","create:organization_client_grants","delete:organization_client_grants","update:device_codes","read:device_codes"],"organization_usage":"allow","allow_any_organization":true},{"id":"cgr_Gh989ryCLAXzmS3y","client_id":"gIJikrYcmSXEhIv9cXEEtoGFj8kPDxUx","audience":"https://api.travel001.com/","scope":["create:organization_client_grants","create:resource"],"organization_usage":"allow","allow_any_organization":true},{"id":"cgr_UWYceavPkwfRPtbf","client_id":"Mt2OyVN7QphPhmFWgJMXtzzethEatko0","audience":"https://terraform-provider-auth0-dev.sus.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:flows_executions","delete:flows_executions","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials","read:organization_client_grants","create:organization_client_grants","delete:organization_client_grants","update:device_codes","read:device_codes"]},{"id":"cgr_fTgG6hZ6DJyXSv2D","client_id":"MIToD9xBxaoP4NwHGKo2EJWwSU04Uxod","audience":"https://api.example.com","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","read:flows_vault_connections","update:flows_vault_connections","delete:flows_vault_connections","create:flows_vault_connections","read:flows_executions","delete:flows_executions","read:connections_options","update:connections_options","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials","read:organization_client_grants","create:organization_client_grants","delete:organization_client_grants","update:device_codes","read:device_codes"],"organization_usage":"allow","allow_any_organization":true},{"id":"cgr_tEnbObhlbCHIkA2C","client_id":"FiUTsAhjzFlxipoMI1hqUX0LK1fpPpjl","audience":"https://api.travel0.com/","scope":["create:organization_client_grants","create:resource"],"organization_usage":"allow","allow_any_organization":true},{"id":"cgr_wdvDb163A7cFXQqz","client_id":"pSxP9RbyOmWpijS0lkRiOIzGqEocLsz1","audience":"https://api.travel00123.com/","scope":["create:organization_client_grants","create:resource"],"organization_usage":"allow","allow_any_organization":true},{"id":"cgr_zV8sbywGQQxCnreD","client_id":"bpViNbMMF1X5J17kaB1jObShEVB81nol","audience":"https://terraform-provider-auth0-dev.sus.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","read:flows_vault_connections","update:flows_vault_connections","delete:flows_vault_connections","create:flows_vault_connections","read:flows_executions","delete:flows_executions","read:connections_options","update:connections_options","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials","read:organization_client_grants","create:organization_client_grants","delete:organization_client_grants","update:device_codes","read:device_codes"]}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 181.501459ms + - id: 26 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_9VJusCS7yMLJUqVx/client-grants?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: '{"client_grants":[{"id":"cgr_wdvDb163A7cFXQqz","client_id":"pSxP9RbyOmWpijS0lkRiOIzGqEocLsz1","audience":"https://api.travel00123.com/","scope":["create:organization_client_grants","create:resource"],"organization_usage":"allow","allow_any_organization":true}],"start":0,"limit":50,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 154.553792ms + - id: 27 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_9VJusCS7yMLJUqVx + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_9VJusCS7yMLJUqVx","name":"test-org-acceptance-testing","display_name":"Test Org Acceptance Testing"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 151.512292ms + - id: 28 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_9VJusCS7yMLJUqVx/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: 140.174583ms + - id: 29 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_9VJusCS7yMLJUqVx/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 142.377042ms + - id: 30 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_9VJusCS7yMLJUqVx/client-grants?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: '{"client_grants":[{"id":"cgr_wdvDb163A7cFXQqz","client_id":"pSxP9RbyOmWpijS0lkRiOIzGqEocLsz1","audience":"https://api.travel00123.com/","scope":["create:organization_client_grants","create:resource"],"organization_usage":"allow","allow_any_organization":true}],"start":0,"limit":50,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 140.661042ms + - id: 31 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_9VJusCS7yMLJUqVx/client-grants/cgr_wdvDb163A7cFXQqz + 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: 117.693167ms + - id: 32 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants/cgr_wdvDb163A7cFXQqz + 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: 150.913084ms + - id: 33 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/pSxP9RbyOmWpijS0lkRiOIzGqEocLsz1 + 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: 211.097625ms + - id: 34 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66f5c900c12df5490e81bb31 + 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: 180.627875ms + - id: 35 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_9VJusCS7yMLJUqVx + 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: 127.040584ms diff --git a/test/data/recordings/TestAccOrganizationConnection.yaml b/test/data/recordings/TestAccOrganizationConnection.yaml index addba7939..4fb6cda2a 100644 --- a/test/data/recordings/TestAccOrganizationConnection.yaml +++ b/test/data/recordings/TestAccOrganizationConnection.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections method: POST response: @@ -28,15 +28,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 379 + content_length: 574 uncompressed: false - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 261.539083ms + duration: 496.504875ms - id: 1 request: proto: HTTP/1.1 @@ -54,8 +54,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -65,13 +65,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 172.790375ms + duration: 347.157791ms - id: 2 request: proto: HTTP/1.1 @@ -90,7 +90,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections method: POST response: @@ -101,13 +101,13 @@ interactions: trailer: {} content_length: 767 uncompressed: false - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"client_id":"1234567","client_secret":"1234567","authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","userinfo_endpoint":null,"token_endpoint":"https://example.okta.com/oauth2/v1/token","schema_version":"oidc-V4","type":"back_channel","attribute_map":{"mapping_mode":"basic_profile"},"connection_settings":{"pkce":"auto"}},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"client_id":"1234567","client_secret":"1234567","authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","userinfo_endpoint":null,"token_endpoint":"https://example.okta.com/oauth2/v1/token","schema_version":"oidc-V4","type":"back_channel","attribute_map":{"mapping_mode":"basic_profile"},"connection_settings":{"pkce":"auto"}},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 249.313709ms + duration: 604.8535ms - id: 3 request: proto: HTTP/1.1 @@ -125,8 +125,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -136,13 +136,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 130.041125ms + duration: 367.203834ms - id: 4 request: proto: HTTP/1.1 @@ -161,7 +161,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations method: POST response: @@ -172,13 +172,13 @@ interactions: trailer: {} content_length: 124 uncompressed: false - body: '{"id":"org_aNK2R2QaqLf85Ieb","display_name":"testaccorganizationconnection","name":"some-org-testaccorganizationconnection"}' + body: '{"id":"org_5WBes4tPvZU22pKC","display_name":"testaccorganizationconnection","name":"some-org-testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 143.852ms + duration: 383.075166ms - id: 5 request: proto: HTTP/1.1 @@ -196,8 +196,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -207,13 +207,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 125.41125ms + duration: 370.197958ms - id: 6 request: proto: HTTP/1.1 @@ -226,14 +226,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_mdWK0jSmM6DaNoFv"} + {"connection_id":"con_FN85UGAI9ZKnZMcb"} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections method: POST response: proto: HTTP/2.0 @@ -243,13 +243,13 @@ interactions: trailer: {} content_length: 226 uncompressed: false - body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 131.978375ms + duration: 389.464708ms - id: 7 request: proto: HTTP/1.1 @@ -267,8 +267,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -278,13 +278,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.175667ms + duration: 340.160959ms - id: 8 request: proto: HTTP/1.1 @@ -302,8 +302,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -313,13 +313,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 130.141792ms + duration: 351.41ms - id: 9 request: proto: HTTP/1.1 @@ -337,8 +337,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -348,13 +348,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.466959ms + duration: 369.166125ms - id: 10 request: proto: HTTP/1.1 @@ -372,8 +372,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -389,7 +389,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 140.843958ms + duration: 362.431417ms - id: 11 request: proto: HTTP/1.1 @@ -407,8 +407,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -418,13 +418,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.868084ms + duration: 373.444084ms - id: 12 request: proto: HTTP/1.1 @@ -442,8 +442,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -453,13 +453,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 125.878625ms + duration: 435.46875ms - id: 13 request: proto: HTTP/1.1 @@ -477,8 +477,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -486,15 +486,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.745208ms + duration: 372.328125ms - id: 14 request: proto: HTTP/1.1 @@ -512,8 +512,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -521,15 +521,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.238834ms + duration: 546.21425ms - id: 15 request: proto: HTTP/1.1 @@ -547,8 +547,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -558,13 +558,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.258458ms + duration: 360.844334ms - id: 16 request: proto: HTTP/1.1 @@ -582,8 +582,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -593,13 +593,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.789541ms + duration: 332.324ms - id: 17 request: proto: HTTP/1.1 @@ -617,8 +617,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -628,13 +628,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.422416ms + duration: 372.783458ms - id: 18 request: proto: HTTP/1.1 @@ -652,8 +652,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -663,13 +663,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.295583ms + duration: 333.16425ms - id: 19 request: proto: HTTP/1.1 @@ -687,8 +687,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -698,13 +698,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 127.465625ms + duration: 343.190084ms - id: 20 request: proto: HTTP/1.1 @@ -722,8 +722,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -731,15 +731,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.960167ms + duration: 419.676459ms - id: 21 request: proto: HTTP/1.1 @@ -757,8 +757,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -768,13 +768,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"enabled_connections":[{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 135.59275ms + duration: 350.55725ms - id: 22 request: proto: HTTP/1.1 @@ -792,8 +792,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -801,15 +801,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.897292ms + duration: 365.559666ms - id: 23 request: proto: HTTP/1.1 @@ -827,8 +827,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -838,13 +838,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.472292ms + duration: 343.911333ms - id: 24 request: proto: HTTP/1.1 @@ -862,8 +862,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -873,34 +873,33 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 146.755375ms + duration: 366.744334ms - id: 25 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 36 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"assign_membership_on_login":true} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv - method: PATCH + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -909,13 +908,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 132.007125ms + duration: 358.397667ms - id: 26 request: proto: HTTP/1.1 @@ -933,8 +932,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -944,13 +943,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.373125ms + duration: 329.9345ms - id: 27 request: proto: HTTP/1.1 @@ -968,8 +967,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -979,33 +978,34 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.65275ms + duration: 342.11125ms - id: 28 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 36 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + {"assign_membership_on_login":true} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_FN85UGAI9ZKnZMcb + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -1014,13 +1014,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.430625ms + duration: 355.646208ms - id: 29 request: proto: HTTP/1.1 @@ -1038,8 +1038,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -1047,15 +1047,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 119.443958ms + duration: 332.960208ms - id: 30 request: proto: HTTP/1.1 @@ -1073,8 +1073,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -1084,13 +1084,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.140292ms + duration: 347.932333ms - id: 31 request: proto: HTTP/1.1 @@ -1108,8 +1108,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1119,13 +1119,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.873833ms + duration: 385.582542ms - id: 32 request: proto: HTTP/1.1 @@ -1143,8 +1143,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1160,7 +1160,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.937583ms + duration: 406.79825ms - id: 33 request: proto: HTTP/1.1 @@ -1178,8 +1178,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1189,13 +1189,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.370667ms + duration: 407.563875ms - id: 34 request: proto: HTTP/1.1 @@ -1213,8 +1213,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -1224,13 +1224,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.506959ms + duration: 344.407792ms - id: 35 request: proto: HTTP/1.1 @@ -1248,8 +1248,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1259,13 +1259,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"enabled_connections":[{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.759667ms + duration: 358.602417ms - id: 36 request: proto: HTTP/1.1 @@ -1283,8 +1283,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1292,15 +1292,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 122.369792ms + duration: 428.62325ms - id: 37 request: proto: HTTP/1.1 @@ -1318,8 +1318,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1329,13 +1329,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.03375ms + duration: 359.510083ms - id: 38 request: proto: HTTP/1.1 @@ -1353,8 +1353,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -1364,13 +1364,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.55025ms + duration: 350.065083ms - id: 39 request: proto: HTTP/1.1 @@ -1388,8 +1388,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -1397,15 +1397,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 130.239917ms + duration: 381.559958ms - id: 40 request: proto: HTTP/1.1 @@ -1423,8 +1423,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -1434,13 +1434,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 128.297583ms + duration: 366.835875ms - id: 41 request: proto: HTTP/1.1 @@ -1458,8 +1458,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -1469,13 +1469,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.410666ms + duration: 360.379208ms - id: 42 request: proto: HTTP/1.1 @@ -1493,8 +1493,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -1504,13 +1504,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.165125ms + duration: 335.711917ms - id: 43 request: proto: HTTP/1.1 @@ -1528,8 +1528,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1539,49 +1539,48 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"enabled_connections":[{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.110709ms + duration: 372.068542ms - id: 44 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 75 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 206 + content_length: 14 uncompressed: false - body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 129.779125ms + status: 200 OK + code: 200 + duration: 361.335083ms - id: 45 request: proto: HTTP/1.1 @@ -1599,8 +1598,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1610,13 +1609,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.642875ms + duration: 393.804583ms - id: 46 request: proto: HTTP/1.1 @@ -1634,8 +1633,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -1645,13 +1644,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.787708ms + duration: 368.059917ms - id: 47 request: proto: HTTP/1.1 @@ -1669,8 +1668,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -1680,13 +1679,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 136.062333ms + duration: 354.073792ms - id: 48 request: proto: HTTP/1.1 @@ -1704,8 +1703,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -1713,15 +1712,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.452541ms + duration: 454.112375ms - id: 49 request: proto: HTTP/1.1 @@ -1739,8 +1738,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -1750,48 +1749,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 122.248083ms + duration: 384.515625ms - id: 50 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 75 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + {"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":true} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/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_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + content_length: 206 + uncompressed: false + body: '{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 123.123708ms + status: 201 Created + code: 201 + duration: 341.853791ms - id: 51 request: proto: HTTP/1.1 @@ -1809,8 +1809,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -1818,15 +1818,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.958625ms + duration: 406.16025ms - id: 52 request: proto: HTTP/1.1 @@ -1844,8 +1844,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -1855,13 +1855,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.334917ms + duration: 331.627541ms - id: 53 request: proto: HTTP/1.1 @@ -1879,8 +1879,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1890,13 +1890,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"enabled_connections":[{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.165917ms + duration: 366.1355ms - id: 54 request: proto: HTTP/1.1 @@ -1914,8 +1914,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1923,15 +1923,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.3025ms + duration: 386.141375ms - id: 55 request: proto: HTTP/1.1 @@ -1949,8 +1949,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1960,13 +1960,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.124166ms + duration: 351.355334ms - id: 56 request: proto: HTTP/1.1 @@ -1984,8 +1984,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -1995,13 +1995,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 137.58225ms + duration: 322.376083ms - id: 57 request: proto: HTTP/1.1 @@ -2019,8 +2019,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2030,13 +2030,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"enabled_connections":[{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.5075ms + duration: 351.048292ms - id: 58 request: proto: HTTP/1.1 @@ -2054,8 +2054,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2063,15 +2063,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 125.593167ms + duration: 326.373375ms - id: 59 request: proto: HTTP/1.1 @@ -2089,8 +2089,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2098,15 +2098,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.9ms + duration: 361.024583ms - id: 60 request: proto: HTTP/1.1 @@ -2124,8 +2124,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -2135,13 +2135,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.165041ms + duration: 348.169125ms - id: 61 request: proto: HTTP/1.1 @@ -2159,8 +2159,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -2170,13 +2170,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 127.406208ms + duration: 424.95925ms - id: 62 request: proto: HTTP/1.1 @@ -2194,8 +2194,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -2205,13 +2205,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 143.437625ms + duration: 386.735291ms - id: 63 request: proto: HTTP/1.1 @@ -2229,8 +2229,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -2240,13 +2240,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 125.435916ms + duration: 404.766333ms - id: 64 request: proto: HTTP/1.1 @@ -2264,8 +2264,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -2275,13 +2275,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 144.36425ms + duration: 402.521291ms - id: 65 request: proto: HTTP/1.1 @@ -2299,8 +2299,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -2310,13 +2310,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 147.298292ms + duration: 322.571ms - id: 66 request: proto: HTTP/1.1 @@ -2334,8 +2334,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2345,13 +2345,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 126.474917ms + duration: 387.193458ms - id: 67 request: proto: HTTP/1.1 @@ -2369,8 +2369,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2386,7 +2386,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.113ms + duration: 329.19125ms - id: 68 request: proto: HTTP/1.1 @@ -2404,24 +2404,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3 - method: DELETE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 114.889209ms + status: 200 OK + code: 200 + duration: 384.129834ms - id: 69 request: proto: HTTP/1.1 @@ -2439,24 +2439,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv - method: DELETE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_FN85UGAI9ZKnZMcb + 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: '{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 122.632042ms + status: 200 OK + code: 200 + duration: 344.719959ms - id: 70 request: proto: HTTP/1.1 @@ -2474,8 +2474,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -2485,13 +2485,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.074917ms + duration: 357.928583ms - id: 71 request: proto: HTTP/1.1 @@ -2509,8 +2509,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -2520,13 +2520,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.129125ms + duration: 363.140125ms - id: 72 request: proto: HTTP/1.1 @@ -2544,8 +2544,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -2553,15 +2553,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.480625ms + duration: 403.102667ms - id: 73 request: proto: HTTP/1.1 @@ -2579,8 +2579,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -2590,13 +2590,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.337ms + duration: 386.983958ms - id: 74 request: proto: HTTP/1.1 @@ -2614,8 +2614,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -2625,13 +2625,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 130.046333ms + duration: 403.578709ms - id: 75 request: proto: HTTP/1.1 @@ -2649,8 +2649,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2660,13 +2660,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"enabled_connections":[{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.999875ms + duration: 379.79875ms - id: 76 request: proto: HTTP/1.1 @@ -2684,8 +2684,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2693,15 +2693,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.664833ms + duration: 357.112ms - id: 77 request: proto: HTTP/1.1 @@ -2719,8 +2719,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2730,13 +2730,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.317291ms + duration: 326.858333ms - id: 78 request: proto: HTTP/1.1 @@ -2754,24 +2754,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_mKS2oQqsOoFCJpCq + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 + content_length: 0 uncompressed: false - body: '{"members":[]}' + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 122.339ms + status: 204 No Content + code: 204 + duration: 331.677625ms - id: 79 request: proto: HTTP/1.1 @@ -2789,24 +2789,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_FN85UGAI9ZKnZMcb + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 111.616916ms + status: 204 No Content + code: 204 + duration: 336.250125ms - id: 80 request: proto: HTTP/1.1 @@ -2824,8 +2824,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -2835,13 +2835,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.732666ms + duration: 448.129375ms - id: 81 request: proto: HTTP/1.1 @@ -2859,8 +2859,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2870,13 +2870,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.162833ms + duration: 509.939666ms - id: 82 request: proto: HTTP/1.1 @@ -2894,8 +2894,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2903,15 +2903,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 130.646667ms + duration: 348.0465ms - id: 83 request: proto: HTTP/1.1 @@ -2929,8 +2929,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2940,13 +2940,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 138.047875ms + duration: 524.941584ms - id: 84 request: proto: HTTP/1.1 @@ -2964,8 +2964,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -2973,15 +2973,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.711583ms + duration: 357.738125ms - id: 85 request: proto: HTTP/1.1 @@ -2999,8 +2999,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -3010,13 +3010,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.840916ms + duration: 340.182125ms - id: 86 request: proto: HTTP/1.1 @@ -3034,8 +3034,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -3045,13 +3045,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.260166ms + duration: 336.659166ms - id: 87 request: proto: HTTP/1.1 @@ -3069,8 +3069,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -3080,13 +3080,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.417375ms + duration: 391.199875ms - id: 88 request: proto: HTTP/1.1 @@ -3104,8 +3104,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3115,13 +3115,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.582167ms + duration: 889.221958ms - id: 89 request: proto: HTTP/1.1 @@ -3139,8 +3139,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3148,15 +3148,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.462541ms + duration: 345.801458ms - id: 90 request: proto: HTTP/1.1 @@ -3174,8 +3174,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -3183,15 +3183,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 127.547959ms + duration: 345.913459ms - id: 91 request: proto: HTTP/1.1 @@ -3209,8 +3209,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -3220,13 +3220,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.412917ms + duration: 354.730542ms - id: 92 request: proto: HTTP/1.1 @@ -3244,8 +3244,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -3255,13 +3255,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.333333ms + duration: 380.461709ms - id: 93 request: proto: HTTP/1.1 @@ -3279,8 +3279,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -3290,49 +3290,48 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.261666ms + duration: 342.481625ms - id: 94 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 63 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"connection_id":"con_xhYrcedsefCpXXs3","show_as_button":true} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 207 - uncompressed: false - body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' + content_length: -1 + uncompressed: true + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 119.178959ms + status: 200 OK + code: 200 + duration: 323.524709ms - id: 95 request: proto: HTTP/1.1 @@ -3350,8 +3349,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3361,13 +3360,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.378333ms + duration: 329.782291ms - id: 96 request: proto: HTTP/1.1 @@ -3385,8 +3384,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3394,15 +3393,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 164.935208ms + duration: 369.326375ms - id: 97 request: proto: HTTP/1.1 @@ -3420,8 +3419,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -3431,13 +3430,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.740208ms + duration: 332.981583ms - id: 98 request: proto: HTTP/1.1 @@ -3455,8 +3454,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -3464,15 +3463,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.993542ms + duration: 350.126083ms - id: 99 request: proto: HTTP/1.1 @@ -3490,8 +3489,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -3501,13 +3500,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.427833ms + duration: 332.381542ms - id: 100 request: proto: HTTP/1.1 @@ -3525,8 +3524,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -3536,13 +3535,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 122.088166ms + duration: 339.239667ms - id: 101 request: proto: HTTP/1.1 @@ -3560,8 +3559,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -3569,15 +3568,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.306625ms + duration: 512.820375ms - id: 102 request: proto: HTTP/1.1 @@ -3595,8 +3594,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3606,13 +3605,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.378958ms + duration: 344.490333ms - id: 103 request: proto: HTTP/1.1 @@ -3630,8 +3629,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3639,15 +3638,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.424625ms + duration: 374.483292ms - id: 104 request: proto: HTTP/1.1 @@ -3665,8 +3664,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -3676,13 +3675,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.505416ms + duration: 370.61275ms - id: 105 request: proto: HTTP/1.1 @@ -3700,8 +3699,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -3711,13 +3710,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.742041ms + duration: 341.692ms - id: 106 request: proto: HTTP/1.1 @@ -3735,8 +3734,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -3746,13 +3745,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.382667ms + duration: 348.276917ms - id: 107 request: proto: HTTP/1.1 @@ -3770,8 +3769,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -3781,48 +3780,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.65975ms + duration: 338.196583ms - id: 108 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 63 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + {"connection_id":"con_mKS2oQqsOoFCJpCq","show_as_button":true} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 + content_length: 207 uncompressed: false - body: '{"members":[]}' + body: '{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 128.303083ms + status: 201 Created + code: 201 + duration: 356.1665ms - id: 109 request: proto: HTTP/1.1 @@ -3840,8 +3840,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -3851,13 +3851,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 212.260291ms + duration: 408.207917ms - id: 110 request: proto: HTTP/1.1 @@ -3875,8 +3875,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -3886,13 +3886,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.153708ms + duration: 402.062583ms - id: 111 request: proto: HTTP/1.1 @@ -3910,8 +3910,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3921,13 +3921,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"enabled_connections":[{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.916875ms + duration: 335.871708ms - id: 112 request: proto: HTTP/1.1 @@ -3945,8 +3945,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3954,36 +3954,35 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.468709ms + duration: 358.097ms - id: 113 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 25 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"show_as_button":false} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3 - method: PATCH + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -3992,13 +3991,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.596375ms + duration: 359.906958ms - id: 114 request: proto: HTTP/1.1 @@ -4016,8 +4015,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -4027,13 +4026,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 127.943667ms + duration: 455.933542ms - id: 115 request: proto: HTTP/1.1 @@ -4051,8 +4050,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4062,13 +4061,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"enabled_connections":[{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.699334ms + duration: 404.208292ms - id: 116 request: proto: HTTP/1.1 @@ -4086,8 +4085,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4095,15 +4094,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.002667ms + duration: 332.563666ms - id: 117 request: proto: HTTP/1.1 @@ -4121,8 +4120,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -4130,15 +4129,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 151.581333ms + duration: 348.507167ms - id: 118 request: proto: HTTP/1.1 @@ -4156,8 +4155,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -4167,13 +4166,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.966917ms + duration: 352.683375ms - id: 119 request: proto: HTTP/1.1 @@ -4191,8 +4190,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -4202,13 +4201,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.802209ms + duration: 330.421083ms - id: 120 request: proto: HTTP/1.1 @@ -4226,8 +4225,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -4235,15 +4234,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.780458ms + duration: 346.695083ms - id: 121 request: proto: HTTP/1.1 @@ -4261,8 +4260,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -4272,13 +4271,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 119.054458ms + duration: 334.847333ms - id: 122 request: proto: HTTP/1.1 @@ -4296,8 +4295,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -4307,13 +4306,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.755625ms + duration: 349.157459ms - id: 123 request: proto: HTTP/1.1 @@ -4331,8 +4330,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4342,13 +4341,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"enabled_connections":[{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.727041ms + duration: 380.320125ms - id: 124 request: proto: HTTP/1.1 @@ -4366,8 +4365,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4375,15 +4374,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.219458ms + duration: 384.786166ms - id: 125 request: proto: HTTP/1.1 @@ -4401,8 +4400,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -4412,13 +4411,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.527875ms + duration: 352.996292ms - id: 126 request: proto: HTTP/1.1 @@ -4436,8 +4435,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -4447,13 +4446,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.207291ms + duration: 337.339167ms - id: 127 request: proto: HTTP/1.1 @@ -4471,8 +4470,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -4480,15 +4479,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.497792ms + duration: 342.132875ms - id: 128 request: proto: HTTP/1.1 @@ -4506,8 +4505,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -4517,13 +4516,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.595625ms + duration: 408.698666ms - id: 129 request: proto: HTTP/1.1 @@ -4541,8 +4540,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -4552,33 +4551,34 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 148.641917ms + duration: 400.254959ms - id: 130 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 25 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + {"show_as_button":false} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_mKS2oQqsOoFCJpCq + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -4587,13 +4587,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.259667ms + duration: 344.204292ms - id: 131 request: proto: HTTP/1.1 @@ -4611,8 +4611,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -4622,13 +4622,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.015667ms + duration: 342.485916ms - id: 132 request: proto: HTTP/1.1 @@ -4646,8 +4646,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -4657,13 +4657,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.770834ms + duration: 434.832958ms - id: 133 request: proto: HTTP/1.1 @@ -4681,8 +4681,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4692,13 +4692,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.525416ms + duration: 366.353958ms - id: 134 request: proto: HTTP/1.1 @@ -4716,8 +4716,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4733,7 +4733,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.737167ms + duration: 375.153375ms - id: 135 request: proto: HTTP/1.1 @@ -4751,24 +4751,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3 - method: DELETE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 159.643541ms + status: 200 OK + code: 200 + duration: 329.654833ms - id: 136 request: proto: HTTP/1.1 @@ -4786,8 +4786,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -4797,13 +4797,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 104.242084ms + duration: 377.928292ms - id: 137 request: proto: HTTP/1.1 @@ -4821,8 +4821,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4832,13 +4832,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"enabled_connections":[{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.256333ms + duration: 398.336417ms - id: 138 request: proto: HTTP/1.1 @@ -4856,8 +4856,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4873,7 +4873,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 134.385917ms + duration: 332.088583ms - id: 139 request: proto: HTTP/1.1 @@ -4891,8 +4891,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -4902,13 +4902,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.54ms + duration: 380.11875ms - id: 140 request: proto: HTTP/1.1 @@ -4926,8 +4926,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -4937,13 +4937,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.436125ms + duration: 343.059875ms - id: 141 request: proto: HTTP/1.1 @@ -4961,8 +4961,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -4972,13 +4972,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.082958ms + duration: 336.913709ms - id: 142 request: proto: HTTP/1.1 @@ -4996,8 +4996,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -5007,13 +5007,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 119.685ms + duration: 375.209208ms - id: 143 request: proto: HTTP/1.1 @@ -5031,8 +5031,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -5042,13 +5042,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.1325ms + duration: 332.622458ms - id: 144 request: proto: HTTP/1.1 @@ -5066,8 +5066,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -5075,15 +5075,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.929916ms + duration: 577.361833ms - id: 145 request: proto: HTTP/1.1 @@ -5101,8 +5101,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5112,13 +5112,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"enabled_connections":[{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.266667ms + duration: 433.639334ms - id: 146 request: proto: HTTP/1.1 @@ -5136,8 +5136,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5145,15 +5145,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.283458ms + duration: 407.109458ms - id: 147 request: proto: HTTP/1.1 @@ -5171,8 +5171,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -5182,13 +5182,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 138.771167ms + duration: 408.64ms - id: 148 request: proto: HTTP/1.1 @@ -5206,8 +5206,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -5217,13 +5217,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.1185ms + duration: 438.468292ms - id: 149 request: proto: HTTP/1.1 @@ -5241,8 +5241,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -5252,13 +5252,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.103042ms + duration: 517.539ms - id: 150 request: proto: HTTP/1.1 @@ -5276,8 +5276,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -5285,15 +5285,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.634417ms + duration: 457.225959ms - id: 151 request: proto: HTTP/1.1 @@ -5311,8 +5311,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -5322,13 +5322,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.724625ms + duration: 392.76ms - id: 152 request: proto: HTTP/1.1 @@ -5346,8 +5346,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -5357,13 +5357,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 138.5535ms + duration: 402.580334ms - id: 153 request: proto: HTTP/1.1 @@ -5381,8 +5381,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5392,13 +5392,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"enabled_connections":[{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.823958ms + duration: 400.692583ms - id: 154 request: proto: HTTP/1.1 @@ -5416,8 +5416,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5425,15 +5425,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.393791ms + duration: 415.086209ms - id: 155 request: proto: HTTP/1.1 @@ -5451,8 +5451,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -5462,13 +5462,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.969125ms + duration: 354.277792ms - id: 156 request: proto: HTTP/1.1 @@ -5486,24 +5486,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_mKS2oQqsOoFCJpCq + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 + content_length: 0 uncompressed: false - body: '{"members":[]}' + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 116.053833ms + status: 204 No Content + code: 204 + duration: 348.440791ms - id: 157 request: proto: HTTP/1.1 @@ -5521,8 +5521,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -5532,13 +5532,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.376584ms + duration: 358.376958ms - id: 158 request: proto: HTTP/1.1 @@ -5556,8 +5556,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5567,13 +5567,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.2325ms + duration: 379.157958ms - id: 159 request: proto: HTTP/1.1 @@ -5591,8 +5591,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5600,51 +5600,50 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.522834ms + duration: 366.916667ms - id: 160 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 100 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":true} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 224 - uncompressed: false - body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 120.668542ms + status: 200 OK + code: 200 + duration: 347.0605ms - id: 161 request: proto: HTTP/1.1 @@ -5662,8 +5661,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -5673,13 +5672,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.414667ms + duration: 352.285125ms - id: 162 request: proto: HTTP/1.1 @@ -5697,8 +5696,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -5708,13 +5707,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 139.922709ms + duration: 346.206417ms - id: 163 request: proto: HTTP/1.1 @@ -5732,8 +5731,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -5743,13 +5742,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 128.046375ms + duration: 324.415291ms - id: 164 request: proto: HTTP/1.1 @@ -5767,8 +5766,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -5776,15 +5775,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.589209ms + duration: 326.646667ms - id: 165 request: proto: HTTP/1.1 @@ -5802,8 +5801,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5813,13 +5812,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.972875ms + duration: 345.118625ms - id: 166 request: proto: HTTP/1.1 @@ -5837,8 +5836,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5846,15 +5845,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 176.289208ms + duration: 325.699292ms - id: 167 request: proto: HTTP/1.1 @@ -5872,8 +5871,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -5881,15 +5880,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.788917ms + duration: 336.374042ms - id: 168 request: proto: HTTP/1.1 @@ -5907,8 +5906,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -5918,13 +5917,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 132.885ms + duration: 318.337333ms - id: 169 request: proto: HTTP/1.1 @@ -5942,8 +5941,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -5953,13 +5952,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.120208ms + duration: 346.201917ms - id: 170 request: proto: HTTP/1.1 @@ -5977,8 +5976,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -5988,13 +5987,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.977542ms + duration: 353.30675ms - id: 171 request: proto: HTTP/1.1 @@ -6012,8 +6011,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -6023,13 +6022,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 122.676375ms + duration: 352.48925ms - id: 172 request: proto: HTTP/1.1 @@ -6047,8 +6046,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6058,13 +6057,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.176833ms + duration: 336.634708ms - id: 173 request: proto: HTTP/1.1 @@ -6082,8 +6081,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6091,15 +6090,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 125.083791ms + duration: 336.920166ms - id: 174 request: proto: HTTP/1.1 @@ -6117,8 +6116,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -6126,15 +6125,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.5555ms + duration: 330.982584ms - id: 175 request: proto: HTTP/1.1 @@ -6152,8 +6151,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -6163,13 +6162,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.003208ms + duration: 326.461166ms - id: 176 request: proto: HTTP/1.1 @@ -6187,8 +6186,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -6198,13 +6197,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.248083ms + duration: 335.013708ms - id: 177 request: proto: HTTP/1.1 @@ -6222,8 +6221,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -6233,13 +6232,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.490666ms + duration: 434.822792ms - id: 178 request: proto: HTTP/1.1 @@ -6257,8 +6256,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -6268,34 +6267,33 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.463833ms + duration: 342.374ms - id: 179 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 62 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"assign_membership_on_login":true,"is_signup_enabled":false} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv - method: PATCH + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -6304,13 +6302,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 133.562958ms + duration: 334.598917ms - id: 180 request: proto: HTTP/1.1 @@ -6328,8 +6326,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6337,15 +6335,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.411666ms + duration: 324.255042ms - id: 181 request: proto: HTTP/1.1 @@ -6363,8 +6361,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -6374,13 +6372,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.557417ms + duration: 420.467667ms - id: 182 request: proto: HTTP/1.1 @@ -6398,8 +6396,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -6409,13 +6407,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 175.43425ms + duration: 343.262875ms - id: 183 request: proto: HTTP/1.1 @@ -6433,8 +6431,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -6442,15 +6440,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.634666ms + duration: 347.350541ms - id: 184 request: proto: HTTP/1.1 @@ -6468,8 +6466,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -6479,48 +6477,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.609416ms + duration: 326.432584ms - id: 185 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 100 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + {"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":true} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/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_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + content_length: 224 + uncompressed: false + body: '{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 124.896958ms + status: 201 Created + code: 201 + duration: 357.34675ms - id: 186 request: proto: HTTP/1.1 @@ -6538,8 +6537,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -6547,15 +6546,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.877083ms + duration: 330.947833ms - id: 187 request: proto: HTTP/1.1 @@ -6573,8 +6572,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -6584,13 +6583,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.711916ms + duration: 329.459916ms - id: 188 request: proto: HTTP/1.1 @@ -6608,8 +6607,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6619,13 +6618,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"enabled_connections":[{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 125.768042ms + duration: 972.123334ms - id: 189 request: proto: HTTP/1.1 @@ -6643,8 +6642,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6652,15 +6651,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.350167ms + duration: 408.988334ms - id: 190 request: proto: HTTP/1.1 @@ -6678,8 +6677,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -6689,13 +6688,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.911709ms + duration: 340.855417ms - id: 191 request: proto: HTTP/1.1 @@ -6713,8 +6712,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -6724,13 +6723,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.154709ms + duration: 333.554416ms - id: 192 request: proto: HTTP/1.1 @@ -6748,8 +6747,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6759,13 +6758,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.925959ms + duration: 346.06175ms - id: 193 request: proto: HTTP/1.1 @@ -6783,8 +6782,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6800,7 +6799,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.049625ms + duration: 432.621209ms - id: 194 request: proto: HTTP/1.1 @@ -6818,8 +6817,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -6829,13 +6828,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 122.875084ms + duration: 512.058625ms - id: 195 request: proto: HTTP/1.1 @@ -6853,8 +6852,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -6864,13 +6863,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 128.34275ms + duration: 343.37825ms - id: 196 request: proto: HTTP/1.1 @@ -6888,8 +6887,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -6899,13 +6898,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 149.175042ms + duration: 334.274375ms - id: 197 request: proto: HTTP/1.1 @@ -6923,8 +6922,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -6934,13 +6933,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.023ms + duration: 340.682458ms - id: 198 request: proto: HTTP/1.1 @@ -6958,8 +6957,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -6969,13 +6968,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.916208ms + duration: 393.927959ms - id: 199 request: proto: HTTP/1.1 @@ -6993,8 +6992,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -7004,13 +7003,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.870291ms + duration: 350.61125ms - id: 200 request: proto: HTTP/1.1 @@ -7028,8 +7027,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -7037,15 +7036,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.468125ms + duration: 461.816083ms - id: 201 request: proto: HTTP/1.1 @@ -7063,24 +7062,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv - method: DELETE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 14 uncompressed: false - body: "" + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 114.517667ms + status: 200 OK + code: 200 + duration: 406.794709ms - id: 202 request: proto: HTTP/1.1 @@ -7098,8 +7097,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -7109,13 +7108,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.611292ms + duration: 345.849084ms - id: 203 request: proto: HTTP/1.1 @@ -7133,8 +7132,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -7144,13 +7143,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.348458ms + duration: 374.059958ms - id: 204 request: proto: HTTP/1.1 @@ -7168,8 +7167,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -7177,15 +7176,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 227.555792ms + duration: 372.670541ms - id: 205 request: proto: HTTP/1.1 @@ -7203,8 +7202,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -7214,13 +7213,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.471125ms + duration: 334.400667ms - id: 206 request: proto: HTTP/1.1 @@ -7238,8 +7237,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -7249,33 +7248,34 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 119.724458ms + duration: 327.494542ms - id: 207 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 62 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + {"assign_membership_on_login":true,"is_signup_enabled":false} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_FN85UGAI9ZKnZMcb + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -7284,13 +7284,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.381291ms + duration: 345.603625ms - id: 208 request: proto: HTTP/1.1 @@ -7308,8 +7308,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -7319,13 +7319,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.201708ms + duration: 345.112ms - id: 209 request: proto: HTTP/1.1 @@ -7343,8 +7343,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -7354,13 +7354,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.590625ms + duration: 343.467125ms - id: 210 request: proto: HTTP/1.1 @@ -7378,8 +7378,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -7387,15 +7387,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.13625ms + duration: 933.8885ms - id: 211 request: proto: HTTP/1.1 @@ -7413,8 +7413,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -7422,15 +7422,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.482625ms + duration: 381.673125ms - id: 212 request: proto: HTTP/1.1 @@ -7448,8 +7448,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -7459,13 +7459,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.493583ms + duration: 340.262333ms - id: 213 request: proto: HTTP/1.1 @@ -7483,8 +7483,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -7494,13 +7494,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.524625ms + duration: 333.206667ms - id: 214 request: proto: HTTP/1.1 @@ -7518,8 +7518,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -7529,13 +7529,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"enabled_connections":[{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.289125ms + duration: 366.4085ms - id: 215 request: proto: HTTP/1.1 @@ -7553,8 +7553,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -7562,15 +7562,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.839167ms + duration: 338.2215ms - id: 216 request: proto: HTTP/1.1 @@ -7588,8 +7588,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -7597,15 +7597,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.51925ms + duration: 349.816959ms - id: 217 request: proto: HTTP/1.1 @@ -7623,8 +7623,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -7634,13 +7634,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 160.741875ms + duration: 343.838ms - id: 218 request: proto: HTTP/1.1 @@ -7658,8 +7658,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -7669,13 +7669,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.112917ms + duration: 342.409916ms - id: 219 request: proto: HTTP/1.1 @@ -7693,8 +7693,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -7704,13 +7704,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 129.139708ms + duration: 349.834666ms - id: 220 request: proto: HTTP/1.1 @@ -7728,8 +7728,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -7739,13 +7739,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.502791ms + duration: 382.48275ms - id: 221 request: proto: HTTP/1.1 @@ -7763,8 +7763,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -7774,13 +7774,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 122.666208ms + duration: 349.689208ms - id: 222 request: proto: HTTP/1.1 @@ -7798,8 +7798,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -7807,15 +7807,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 119.589833ms + duration: 333.0945ms - id: 223 request: proto: HTTP/1.1 @@ -7833,8 +7833,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -7842,15 +7842,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.293542ms + duration: 341.294834ms - id: 224 request: proto: HTTP/1.1 @@ -7868,8 +7868,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -7879,13 +7879,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.058042ms + duration: 327.818ms - id: 225 request: proto: HTTP/1.1 @@ -7903,8 +7903,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -7914,13 +7914,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.578125ms + duration: 341.195917ms - id: 226 request: proto: HTTP/1.1 @@ -7938,8 +7938,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -7949,85 +7949,83 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.569875ms + duration: 694.135625ms - id: 227 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 75 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 225 - uncompressed: false - body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' + content_length: -1 + uncompressed: true + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 130.511ms + status: 200 OK + code: 200 + duration: 327.63875ms - id: 228 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 75 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 206 - uncompressed: false - body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' + content_length: -1 + uncompressed: true + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 128.843834ms + status: 200 OK + code: 200 + duration: 334.003416ms - id: 229 request: proto: HTTP/1.1 @@ -8045,8 +8043,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -8056,13 +8054,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 130.884083ms + duration: 326.992583ms - id: 230 request: proto: HTTP/1.1 @@ -8080,8 +8078,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -8091,13 +8089,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"enabled_connections":[{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.766125ms + duration: 340.680625ms - id: 231 request: proto: HTTP/1.1 @@ -8115,8 +8113,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -8124,15 +8122,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.900125ms + duration: 332.792584ms - id: 232 request: proto: HTTP/1.1 @@ -8150,8 +8148,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -8161,13 +8159,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 135.564833ms + duration: 375.51475ms - id: 233 request: proto: HTTP/1.1 @@ -8185,25 +8183,1217 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_FN85UGAI9ZKnZMcb + 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_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"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: 141.239541ms - - id: 234 + status: 204 No Content + code: 204 + duration: 368.430708ms + - id: 234 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 378.912333ms + - id: 235 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/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: 421.553625ms + - id: 236 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 366.259542ms + - id: 237 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 408.757875ms + - id: 238 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 368.219542ms + - id: 239 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 333.882917ms + - id: 240 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 363.098ms + - id: 241 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 339.864375ms + - id: 242 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/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: 359.02475ms + - id: 243 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 371.14175ms + - id: 244 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 393.614875ms + - id: 245 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 424.386834ms + - id: 246 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 386.174291ms + - id: 247 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 318.904167ms + - id: 248 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 323.251708ms + - id: 249 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/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: 348.306458ms + - id: 250 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 344.941625ms + - id: 251 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 346.03825ms + - id: 252 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 325.400666ms + - id: 253 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 351.579375ms + - id: 254 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 334.570916ms + - id: 255 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 331.802958ms + - id: 256 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/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: 338.050542ms + - id: 257 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 401.158375ms + - id: 258 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 392.285334ms + - id: 259 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 366.181375ms + - id: 260 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 359.512875ms + - id: 261 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 354.5335ms + - id: 262 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/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: 524.852792ms + - id: 263 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 75 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 225 + uncompressed: false + body: '{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 361.931125ms + - id: 264 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 75 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":true} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 206 + uncompressed: false + body: '{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 407.681167ms + - id: 265 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/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_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 410.049792ms + - id: 266 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 366.500709ms + - id: 267 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 355.112125ms + - id: 268 request: proto: HTTP/1.1 proto_major: 1 @@ -8220,8 +9410,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -8231,14 +9421,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.044292ms - - id: 235 + duration: 336.771709ms + - id: 269 request: proto: HTTP/1.1 proto_major: 1 @@ -8255,8 +9445,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -8266,14 +9456,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"enabled_connections":[{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.054875ms - - id: 236 + duration: 391.280042ms + - id: 270 request: proto: HTTP/1.1 proto_major: 1 @@ -8290,8 +9480,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -8301,14 +9491,84 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 119.688334ms - - id: 237 + duration: 343.931417ms + - id: 271 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 356.192875ms + - id: 272 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/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_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 406.946958ms + - id: 273 request: proto: HTTP/1.1 proto_major: 1 @@ -8325,8 +9585,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -8342,8 +9602,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.949125ms - - id: 238 + duration: 339.226416ms + - id: 274 request: proto: HTTP/1.1 proto_major: 1 @@ -8360,8 +9620,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -8371,14 +9631,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 122.92575ms - - id: 239 + duration: 343.746917ms + - id: 275 request: proto: HTTP/1.1 proto_major: 1 @@ -8395,8 +9655,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -8406,14 +9666,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 126.445041ms - - id: 240 + duration: 335.852583ms + - id: 276 request: proto: HTTP/1.1 proto_major: 1 @@ -8430,8 +9690,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -8441,14 +9701,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.789542ms - - id: 241 + duration: 335.21925ms + - id: 277 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/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_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 349.060541ms + - id: 278 request: proto: HTTP/1.1 proto_major: 1 @@ -8465,8 +9760,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -8482,8 +9777,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.043166ms - - id: 242 + duration: 334.16675ms + - id: 279 request: proto: HTTP/1.1 proto_major: 1 @@ -8500,8 +9795,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -8511,14 +9806,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.488792ms - - id: 243 + duration: 358.0295ms + - id: 280 request: proto: HTTP/1.1 proto_major: 1 @@ -8535,8 +9830,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -8546,14 +9841,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.240334ms - - id: 244 + duration: 364.869084ms + - id: 281 request: proto: HTTP/1.1 proto_major: 1 @@ -8570,8 +9865,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -8581,14 +9876,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.411291ms - - id: 245 + duration: 334.863209ms + - id: 282 request: proto: HTTP/1.1 proto_major: 1 @@ -8605,8 +9900,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -8616,14 +9911,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.051958ms - - id: 246 + duration: 362.903417ms + - id: 283 request: proto: HTTP/1.1 proto_major: 1 @@ -8640,8 +9935,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -8651,14 +9946,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"enabled_connections":[{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 155.211334ms - - id: 247 + duration: 870.35425ms + - id: 284 request: proto: HTTP/1.1 proto_major: 1 @@ -8675,8 +9970,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -8686,14 +9981,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' + body: '{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.9075ms - - id: 248 + duration: 339.731458ms + - id: 285 request: proto: HTTP/1.1 proto_major: 1 @@ -8710,8 +10005,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -8721,14 +10016,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.212084ms - - id: 249 + duration: 350.464542ms + - id: 286 request: proto: HTTP/1.1 proto_major: 1 @@ -8745,8 +10040,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -8756,14 +10051,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 146.579041ms - - id: 250 + duration: 339.060042ms + - id: 287 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/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_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 342.190375ms + - id: 288 request: proto: HTTP/1.1 proto_major: 1 @@ -8780,8 +10110,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -8797,8 +10127,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.861875ms - - id: 251 + duration: 371.929833ms + - id: 289 request: proto: HTTP/1.1 proto_major: 1 @@ -8815,8 +10145,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -8826,14 +10156,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.346166ms - - id: 252 + duration: 333.474208ms + - id: 290 request: proto: HTTP/1.1 proto_major: 1 @@ -8850,8 +10180,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -8861,14 +10191,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 164.212375ms - - id: 253 + duration: 881.557042ms + - id: 291 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/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_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 349.399ms + - id: 292 request: proto: HTTP/1.1 proto_major: 1 @@ -8885,8 +10250,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -8902,8 +10267,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.387333ms - - id: 254 + duration: 353.175583ms + - id: 293 request: proto: HTTP/1.1 proto_major: 1 @@ -8920,8 +10285,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -8931,14 +10296,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.585166ms - - id: 255 + duration: 409.913292ms + - id: 294 request: proto: HTTP/1.1 proto_major: 1 @@ -8955,8 +10320,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -8966,14 +10331,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' + body: '{"id":"con_FN85UGAI9ZKnZMcb","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.059083ms - - id: 256 + duration: 361.379792ms + - id: 295 request: proto: HTTP/1.1 proto_major: 1 @@ -8990,8 +10355,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -9001,14 +10366,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"con_mKS2oQqsOoFCJpCq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.491209ms - - id: 257 + duration: 350.082917ms + - id: 296 request: proto: HTTP/1.1 proto_major: 1 @@ -9025,8 +10390,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -9036,14 +10401,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.615083ms - - id: 258 + duration: 329.885541ms + - id: 297 request: proto: HTTP/1.1 proto_major: 1 @@ -9060,8 +10425,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -9071,14 +10436,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"enabled_connections":[{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 232.07075ms - - id: 259 + duration: 365.628833ms + - id: 298 request: proto: HTTP/1.1 proto_major: 1 @@ -9095,8 +10460,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_FN85UGAI9ZKnZMcb method: GET response: proto: HTTP/2.0 @@ -9106,14 +10471,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' + body: '{"connection_id":"con_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 177.174917ms - - id: 260 + duration: 338.246584ms + - id: 299 request: proto: HTTP/1.1 proto_major: 1 @@ -9130,8 +10495,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_mKS2oQqsOoFCJpCq method: GET response: proto: HTTP/2.0 @@ -9141,14 +10506,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.387375ms - - id: 261 + duration: 341.643167ms + - id: 300 request: proto: HTTP/1.1 proto_major: 1 @@ -9165,8 +10530,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: GET response: proto: HTTP/2.0 @@ -9176,14 +10541,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"org_5WBes4tPvZU22pKC","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 127.044208ms - - id: 262 + duration: 425.351ms + - id: 301 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/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_FN85UGAI9ZKnZMcb","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mKS2oQqsOoFCJpCq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 406.452875ms + - id: 302 request: proto: HTTP/1.1 proto_major: 1 @@ -9200,8 +10600,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -9217,8 +10617,43 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.718416ms - - id: 263 + duration: 348.597167ms + - id: 303 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 329.892958ms + - id: 304 request: proto: HTTP/1.1 proto_major: 1 @@ -9235,8 +10670,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_mKS2oQqsOoFCJpCq method: DELETE response: proto: HTTP/2.0 @@ -9252,8 +10687,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 116.457ms - - id: 264 + duration: 340.022583ms + - id: 305 request: proto: HTTP/1.1 proto_major: 1 @@ -9270,8 +10705,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_FN85UGAI9ZKnZMcb method: DELETE response: proto: HTTP/2.0 @@ -9287,8 +10722,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 114.196042ms - - id: 265 + duration: 369.959834ms + - id: 306 request: proto: HTTP/1.1 proto_major: 1 @@ -9305,8 +10740,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_FN85UGAI9ZKnZMcb method: DELETE response: proto: HTTP/2.0 @@ -9322,8 +10757,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 116.0125ms - - id: 266 + duration: 347.551792ms + - id: 307 request: proto: HTTP/1.1 proto_major: 1 @@ -9340,8 +10775,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC/enabled_connections/con_mKS2oQqsOoFCJpCq method: DELETE response: proto: HTTP/2.0 @@ -9357,8 +10792,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 111.243291ms - - id: 267 + duration: 320.469916ms + - id: 308 request: proto: HTTP/1.1 proto_major: 1 @@ -9375,8 +10810,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_5WBes4tPvZU22pKC method: DELETE response: proto: HTTP/2.0 @@ -9392,8 +10827,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 116.072709ms - - id: 268 + duration: 536.640208ms + - id: 309 request: proto: HTTP/1.1 proto_major: 1 @@ -9410,8 +10845,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mKS2oQqsOoFCJpCq method: DELETE response: proto: HTTP/2.0 @@ -9421,14 +10856,14 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2024-07-08T20:04:47.182Z"}' + body: '{"deleted_at":"2024-09-23T06:20:05.372Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 125.268333ms - - id: 269 + duration: 390.850584ms + - id: 310 request: proto: HTTP/1.1 proto_major: 1 @@ -9445,8 +10880,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FN85UGAI9ZKnZMcb method: DELETE response: proto: HTTP/2.0 @@ -9456,10 +10891,10 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2024-07-08T20:04:47.311Z"}' + body: '{"deleted_at":"2024-09-23T06:20:05.771Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 117.195375ms + duration: 344.423333ms diff --git a/test/data/recordings/TestAccOrganizationConnections.yaml b/test/data/recordings/TestAccOrganizationConnections.yaml index 8a6585c73..1b246a076 100644 --- a/test/data/recordings/TestAccOrganizationConnections.yaml +++ b/test/data/recordings/TestAccOrganizationConnections.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections method: POST response: @@ -28,15 +28,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 381 + content_length: 576 uncompressed: false - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 282.243ms + duration: 420.668333ms - id: 1 request: proto: HTTP/1.1 @@ -54,8 +54,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -65,13 +65,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 153.97575ms + duration: 391.439083ms - id: 2 request: proto: HTTP/1.1 @@ -90,7 +90,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections method: POST response: @@ -101,13 +101,13 @@ interactions: trailer: {} content_length: 770 uncompressed: false - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"client_id":"1234567","client_secret":"1234567","authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","userinfo_endpoint":null,"token_endpoint":"https://example.okta.com/oauth2/v1/token","schema_version":"oidc-V4","type":"back_channel","attribute_map":{"mapping_mode":"basic_profile"},"connection_settings":{"pkce":"auto"}},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"client_id":"1234567","client_secret":"1234567","authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","userinfo_endpoint":null,"token_endpoint":"https://example.okta.com/oauth2/v1/token","schema_version":"oidc-V4","type":"back_channel","attribute_map":{"mapping_mode":"basic_profile"},"connection_settings":{"pkce":"auto"}},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 263.304875ms + duration: 470.266208ms - id: 3 request: proto: HTTP/1.1 @@ -125,8 +125,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -136,13 +136,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 128.936333ms + duration: 349.47325ms - id: 4 request: proto: HTTP/1.1 @@ -161,7 +161,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations method: POST response: @@ -172,13 +172,13 @@ interactions: trailer: {} content_length: 126 uncompressed: false - body: '{"id":"org_86e2tgHA8J23MXeO","display_name":"testaccorganizationconnections","name":"some-org-testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","display_name":"testaccorganizationconnections","name":"some-org-testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 160.390167ms + duration: 357.845042ms - id: 5 request: proto: HTTP/1.1 @@ -196,8 +196,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -207,13 +207,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 119.351333ms + duration: 348.512166ms - id: 6 request: proto: HTTP/1.1 @@ -226,14 +226,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_cy9fHD6JS7xozwRI"} + {"connection_id":"con_7Ys4WX2IP8FNuMN7"} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections method: POST response: proto: HTTP/2.0 @@ -243,13 +243,13 @@ interactions: trailer: {} content_length: 227 uncompressed: false - body: '{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 134.524583ms + duration: 385.079167ms - id: 7 request: proto: HTTP/1.1 @@ -267,8 +267,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -278,13 +278,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 130.529792ms + duration: 337.596625ms - id: 8 request: proto: HTTP/1.1 @@ -302,8 +302,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -313,13 +313,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.908459ms + duration: 372.05325ms - id: 9 request: proto: HTTP/1.1 @@ -337,8 +337,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -348,13 +348,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.885167ms + duration: 354.217333ms - id: 10 request: proto: HTTP/1.1 @@ -372,8 +372,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -383,13 +383,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.257917ms + duration: 401.403417ms - id: 11 request: proto: HTTP/1.1 @@ -407,8 +407,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -418,13 +418,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.949541ms + duration: 343.983834ms - id: 12 request: proto: HTTP/1.1 @@ -442,8 +442,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -453,13 +453,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.189333ms + duration: 366.570166ms - id: 13 request: proto: HTTP/1.1 @@ -477,8 +477,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -488,13 +488,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.223459ms + duration: 333.904584ms - id: 14 request: proto: HTTP/1.1 @@ -512,8 +512,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -523,13 +523,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 175.699375ms + duration: 345.34225ms - id: 15 request: proto: HTTP/1.1 @@ -547,8 +547,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -564,7 +564,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.542625ms + duration: 343.44625ms - id: 16 request: proto: HTTP/1.1 @@ -582,24 +582,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI - method: DELETE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 114.164ms + status: 200 OK + code: 200 + duration: 360.915458ms - id: 17 request: proto: HTTP/1.1 @@ -617,24 +617,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections/con_7Ys4WX2IP8FNuMN7 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 124.817ms + status: 204 No Content + code: 204 + duration: 373.735ms - id: 18 request: proto: HTTP/1.1 @@ -652,8 +652,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -663,13 +663,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 132.766958ms + duration: 362.052125ms - id: 19 request: proto: HTTP/1.1 @@ -687,8 +687,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -696,15 +696,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + 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.59325ms + duration: 341.654417ms - id: 20 request: proto: HTTP/1.1 @@ -722,8 +722,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -731,15 +731,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.60375ms + duration: 334.778167ms - id: 21 request: proto: HTTP/1.1 @@ -757,8 +757,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -768,13 +768,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.342ms + duration: 374.692291ms - id: 22 request: proto: HTTP/1.1 @@ -792,8 +792,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -803,13 +803,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.035333ms + duration: 359.863916ms - id: 23 request: proto: HTTP/1.1 @@ -827,8 +827,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -838,13 +838,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 126.724334ms + duration: 330.834166ms - id: 24 request: proto: HTTP/1.1 @@ -862,8 +862,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -873,13 +873,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 133.21875ms + duration: 331.095958ms - id: 25 request: proto: HTTP/1.1 @@ -897,8 +897,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -906,15 +906,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.711875ms + duration: 335.17675ms - id: 26 request: proto: HTTP/1.1 @@ -932,8 +932,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -943,13 +943,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 129.323917ms + duration: 349.903875ms - id: 27 request: proto: HTTP/1.1 @@ -967,8 +967,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -976,15 +976,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.33925ms + duration: 341.294083ms - id: 28 request: proto: HTTP/1.1 @@ -1002,8 +1002,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1013,13 +1013,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.593042ms + duration: 545.28275ms - id: 29 request: proto: HTTP/1.1 @@ -1037,8 +1037,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -1048,13 +1048,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.682458ms + duration: 344.863ms - id: 30 request: proto: HTTP/1.1 @@ -1072,8 +1072,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -1083,13 +1083,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.194959ms + duration: 342.19925ms - id: 31 request: proto: HTTP/1.1 @@ -1107,8 +1107,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -1116,15 +1116,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 134.386334ms + duration: 402.137667ms - id: 32 request: proto: HTTP/1.1 @@ -1142,8 +1142,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -1153,13 +1153,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.585125ms + duration: 363.900833ms - id: 33 request: proto: HTTP/1.1 @@ -1177,8 +1177,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1188,13 +1188,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 126.453167ms + duration: 338.344916ms - id: 34 request: proto: HTTP/1.1 @@ -1212,8 +1212,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1221,15 +1221,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 137.037791ms + duration: 422.972584ms - id: 35 request: proto: HTTP/1.1 @@ -1247,8 +1247,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1258,13 +1258,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 104.588792ms + duration: 376.290291ms - id: 36 request: proto: HTTP/1.1 @@ -1282,8 +1282,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -1293,13 +1293,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 125.775833ms + duration: 357.146292ms - id: 37 request: proto: HTTP/1.1 @@ -1317,8 +1317,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -1326,15 +1326,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.610125ms + duration: 359.304166ms - id: 38 request: proto: HTTP/1.1 @@ -1352,8 +1352,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -1363,13 +1363,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 139.305667ms + duration: 333.215333ms - id: 39 request: proto: HTTP/1.1 @@ -1387,8 +1387,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -1398,13 +1398,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.588542ms + duration: 353.056ms - id: 40 request: proto: HTTP/1.1 @@ -1422,8 +1422,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1433,13 +1433,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.179584ms + duration: 332.893292ms - id: 41 request: proto: HTTP/1.1 @@ -1457,8 +1457,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1466,51 +1466,50 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.7965ms + duration: 338.809167ms - id: 42 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 41 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"connection_id":"con_cy9fHD6JS7xozwRI"} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 227 - uncompressed: false - body: '{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 117.587542ms + status: 200 OK + code: 200 + duration: 334.806292ms - id: 43 request: proto: HTTP/1.1 @@ -1528,8 +1527,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -1539,13 +1538,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.039834ms + duration: 549.142875ms - id: 44 request: proto: HTTP/1.1 @@ -1563,8 +1562,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -1574,13 +1573,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.270125ms + duration: 331.890833ms - id: 45 request: proto: HTTP/1.1 @@ -1598,8 +1597,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -1609,13 +1608,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.058875ms + duration: 440.973708ms - id: 46 request: proto: HTTP/1.1 @@ -1633,8 +1632,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1642,50 +1641,51 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + 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: 137.627708ms + duration: 333.028542ms - id: 47 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 41 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + {"connection_id":"con_7Ys4WX2IP8FNuMN7"} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/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_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + content_length: 227 + uncompressed: false + body: '{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 115.515125ms + status: 201 Created + code: 201 + duration: 337.211458ms - id: 48 request: proto: HTTP/1.1 @@ -1703,8 +1703,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1714,13 +1714,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 132.890208ms + duration: 347.207541ms - id: 49 request: proto: HTTP/1.1 @@ -1738,8 +1738,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -1747,15 +1747,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.815125ms + duration: 413.628583ms - id: 50 request: proto: HTTP/1.1 @@ -1773,8 +1773,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1784,13 +1784,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 122.552084ms + duration: 414.729791ms - id: 51 request: proto: HTTP/1.1 @@ -1808,8 +1808,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1817,15 +1817,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.56375ms + duration: 402.212208ms - id: 52 request: proto: HTTP/1.1 @@ -1843,8 +1843,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1854,13 +1854,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.400375ms + duration: 409.890542ms - id: 53 request: proto: HTTP/1.1 @@ -1878,8 +1878,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -1889,13 +1889,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.723584ms + duration: 379.966583ms - id: 54 request: proto: HTTP/1.1 @@ -1913,8 +1913,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1924,13 +1924,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.930417ms + duration: 386.35325ms - id: 55 request: proto: HTTP/1.1 @@ -1948,8 +1948,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1957,15 +1957,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 125.361125ms + duration: 362.547792ms - id: 56 request: proto: HTTP/1.1 @@ -1983,8 +1983,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1992,15 +1992,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.039916ms + duration: 340.633292ms - id: 57 request: proto: HTTP/1.1 @@ -2018,8 +2018,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -2029,13 +2029,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.640708ms + duration: 331.067292ms - id: 58 request: proto: HTTP/1.1 @@ -2053,8 +2053,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -2064,13 +2064,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 129.808792ms + duration: 383.853458ms - id: 59 request: proto: HTTP/1.1 @@ -2088,8 +2088,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -2099,13 +2099,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.64525ms + duration: 365.628583ms - id: 60 request: proto: HTTP/1.1 @@ -2123,8 +2123,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2134,13 +2134,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 141.869625ms + duration: 367.909042ms - id: 61 request: proto: HTTP/1.1 @@ -2158,8 +2158,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -2169,13 +2169,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 130.608167ms + duration: 362.118ms - id: 62 request: proto: HTTP/1.1 @@ -2193,8 +2193,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2204,13 +2204,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 130.410792ms + duration: 340.412375ms - id: 63 request: proto: HTTP/1.1 @@ -2228,8 +2228,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2245,7 +2245,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 137.523375ms + duration: 360.689875ms - id: 64 request: proto: HTTP/1.1 @@ -2263,8 +2263,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2274,13 +2274,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.893083ms + duration: 341.144625ms - id: 65 request: proto: HTTP/1.1 @@ -2298,8 +2298,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -2309,13 +2309,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.004208ms + duration: 387.716041ms - id: 66 request: proto: HTTP/1.1 @@ -2333,8 +2333,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -2344,13 +2344,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.562083ms + duration: 421.091958ms - id: 67 request: proto: HTTP/1.1 @@ -2368,8 +2368,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -2379,13 +2379,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 133.343917ms + duration: 354.68ms - id: 68 request: proto: HTTP/1.1 @@ -2403,8 +2403,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2414,13 +2414,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.183208ms + duration: 344.58525ms - id: 69 request: proto: HTTP/1.1 @@ -2438,8 +2438,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -2449,13 +2449,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 155.557416ms + duration: 340.939667ms - id: 70 request: proto: HTTP/1.1 @@ -2473,8 +2473,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2482,15 +2482,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 132.170417ms + duration: 337.238542ms - id: 71 request: proto: HTTP/1.1 @@ -2508,8 +2508,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2517,15 +2517,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.432542ms + duration: 362.659792ms - id: 72 request: proto: HTTP/1.1 @@ -2543,8 +2543,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2554,13 +2554,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.275583ms + duration: 368.818667ms - id: 73 request: proto: HTTP/1.1 @@ -2578,8 +2578,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -2589,13 +2589,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.754667ms + duration: 909.337333ms - id: 74 request: proto: HTTP/1.1 @@ -2613,8 +2613,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -2624,49 +2624,48 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.125791ms + duration: 497.488334ms - id: 75 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 41 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"connection_id":"con_ZALw4YS3znUQnlDq"} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 208 - uncompressed: false - body: '{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}' + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 124.00625ms + status: 200 OK + code: 200 + duration: 351.563084ms - id: 76 request: proto: HTTP/1.1 @@ -2684,8 +2683,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2695,13 +2694,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.180792ms + duration: 355.4225ms - id: 77 request: proto: HTTP/1.1 @@ -2719,8 +2718,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -2730,13 +2729,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 132.752167ms + duration: 358.733667ms - id: 78 request: proto: HTTP/1.1 @@ -2754,8 +2753,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2765,13 +2764,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 119.941583ms + duration: 341.774834ms - id: 79 request: proto: HTTP/1.1 @@ -2789,8 +2788,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2806,7 +2805,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.60075ms + duration: 325.128458ms - id: 80 request: proto: HTTP/1.1 @@ -2824,8 +2823,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2835,13 +2834,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 132.494584ms + duration: 376.729625ms - id: 81 request: proto: HTTP/1.1 @@ -2859,8 +2858,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -2870,13 +2869,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.415583ms + duration: 462.277916ms - id: 82 request: proto: HTTP/1.1 @@ -2894,8 +2893,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -2903,15 +2902,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.656459ms + duration: 356.4045ms - id: 83 request: proto: HTTP/1.1 @@ -2929,8 +2928,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -2940,13 +2939,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.470875ms + duration: 377.55175ms - id: 84 request: proto: HTTP/1.1 @@ -2964,8 +2963,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2975,48 +2974,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.714708ms + duration: 378.841875ms - id: 85 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 41 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + {"connection_id":"con_ZR1gVd2o5zDVZzhR"} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/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_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + content_length: 208 + uncompressed: false + body: '{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}' headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 135.124166ms + status: 201 Created + code: 201 + duration: 385.659292ms - id: 86 request: proto: HTTP/1.1 @@ -3034,8 +3034,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3045,13 +3045,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.857709ms + duration: 403.03275ms - id: 87 request: proto: HTTP/1.1 @@ -3069,8 +3069,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -3080,13 +3080,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 133.996292ms + duration: 328.127708ms - id: 88 request: proto: HTTP/1.1 @@ -3104,8 +3104,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3115,13 +3115,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 126.894791ms + duration: 476.114542ms - id: 89 request: proto: HTTP/1.1 @@ -3139,8 +3139,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3156,7 +3156,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.142958ms + duration: 367.306417ms - id: 90 request: proto: HTTP/1.1 @@ -3174,8 +3174,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -3185,13 +3185,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.426083ms + duration: 351.488458ms - id: 91 request: proto: HTTP/1.1 @@ -3209,8 +3209,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -3220,13 +3220,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.943042ms + duration: 341.615083ms - id: 92 request: proto: HTTP/1.1 @@ -3244,8 +3244,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3255,13 +3255,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.886625ms + duration: 347.603958ms - id: 93 request: proto: HTTP/1.1 @@ -3279,8 +3279,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3288,15 +3288,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.428208ms + duration: 359.212625ms - id: 94 request: proto: HTTP/1.1 @@ -3314,8 +3314,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -3325,13 +3325,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.454208ms + duration: 332.40925ms - id: 95 request: proto: HTTP/1.1 @@ -3349,8 +3349,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -3360,13 +3360,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 138.7215ms + duration: 386.845ms - id: 96 request: proto: HTTP/1.1 @@ -3384,8 +3384,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -3393,15 +3393,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.493375ms + duration: 335.021875ms - id: 97 request: proto: HTTP/1.1 @@ -3419,8 +3419,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -3430,13 +3430,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.665791ms + duration: 337.856084ms - id: 98 request: proto: HTTP/1.1 @@ -3454,8 +3454,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3465,13 +3465,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 128.875917ms + duration: 353.41275ms - id: 99 request: proto: HTTP/1.1 @@ -3489,8 +3489,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -3500,13 +3500,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.119792ms + duration: 338.022834ms - id: 100 request: proto: HTTP/1.1 @@ -3524,8 +3524,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3535,13 +3535,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.372416ms + duration: 344.219125ms - id: 101 request: proto: HTTP/1.1 @@ -3559,8 +3559,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3568,15 +3568,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 104.078875ms + duration: 348.373125ms - id: 102 request: proto: HTTP/1.1 @@ -3594,8 +3594,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -3605,13 +3605,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 143.884292ms + duration: 346.705333ms - id: 103 request: proto: HTTP/1.1 @@ -3629,8 +3629,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -3638,15 +3638,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.206334ms + duration: 497.304333ms - id: 104 request: proto: HTTP/1.1 @@ -3664,8 +3664,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -3675,13 +3675,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.632666ms + duration: 335.443625ms - id: 105 request: proto: HTTP/1.1 @@ -3699,8 +3699,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -3710,13 +3710,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.733584ms + duration: 358.7165ms - id: 106 request: proto: HTTP/1.1 @@ -3734,8 +3734,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3745,13 +3745,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.86425ms + duration: 327.322709ms - id: 107 request: proto: HTTP/1.1 @@ -3769,8 +3769,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -3780,13 +3780,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.104ms + duration: 556.333084ms - id: 108 request: proto: HTTP/1.1 @@ -3804,24 +3804,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_ZALw4YS3znUQnlDq - method: DELETE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/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_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 114.506875ms + status: 200 OK + code: 200 + duration: 448.272917ms - id: 109 request: proto: HTTP/1.1 @@ -3839,96 +3839,94 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI - method: DELETE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 14 uncompressed: false - body: "" + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 114.02875ms + status: 200 OK + code: 200 + duration: 401.804166ms - id: 110 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 75 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 207 - uncompressed: false - body: '{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 117.829333ms + status: 200 OK + code: 200 + duration: 333.554042ms - id: 111 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 75 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 226 - uncompressed: false - body: '{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}' + content_length: -1 + uncompressed: true + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 122.010167ms + status: 200 OK + code: 200 + duration: 342.60175ms - id: 112 request: proto: HTTP/1.1 @@ -3946,8 +3944,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -3957,13 +3955,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.670542ms + duration: 442.125417ms - id: 113 request: proto: HTTP/1.1 @@ -3981,8 +3979,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -3992,13 +3990,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.595709ms + duration: 342.619792ms - id: 114 request: proto: HTTP/1.1 @@ -4016,8 +4014,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4027,13 +4025,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 122.049166ms + duration: 354.784792ms - id: 115 request: proto: HTTP/1.1 @@ -4051,8 +4049,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -4060,15 +4058,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.116625ms + duration: 331.745875ms - id: 116 request: proto: HTTP/1.1 @@ -4086,8 +4084,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4097,13 +4095,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.882542ms + duration: 343.759542ms - id: 117 request: proto: HTTP/1.1 @@ -4121,8 +4119,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4130,15 +4128,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 126.364542ms + duration: 312.7405ms - id: 118 request: proto: HTTP/1.1 @@ -4156,8 +4154,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -4165,15 +4163,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.428917ms + duration: 323.138583ms - id: 119 request: proto: HTTP/1.1 @@ -4191,8 +4189,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -4202,13 +4200,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.184625ms + duration: 334.476917ms - id: 120 request: proto: HTTP/1.1 @@ -4226,8 +4224,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -4237,13 +4235,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 119.84375ms + duration: 329.27125ms - id: 121 request: proto: HTTP/1.1 @@ -4261,8 +4259,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -4272,13 +4270,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.644208ms + duration: 344.990292ms - id: 122 request: proto: HTTP/1.1 @@ -4296,8 +4294,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4307,13 +4305,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 131.510833ms + duration: 364.724917ms - id: 123 request: proto: HTTP/1.1 @@ -4331,24 +4329,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections/con_7Ys4WX2IP8FNuMN7 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 138.524083ms + status: 204 No Content + code: 204 + duration: 368.228917ms - id: 124 request: proto: HTTP/1.1 @@ -4366,94 +4364,96 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections/con_ZR1gVd2o5zDVZzhR + 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_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"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: 138.1265ms + status: 204 No Content + code: 204 + duration: 373.42025ms - id: 125 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 75 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + {"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 + content_length: 226 uncompressed: false - body: '{"members":[]}' + body: '{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 136.943459ms + status: 201 Created + code: 201 + duration: 412.25875ms - id: 126 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 75 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + {"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/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":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + content_length: 207 + uncompressed: false + body: '{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}' headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 117.31925ms + status: 201 Created + code: 201 + duration: 366.102292ms - id: 127 request: proto: HTTP/1.1 @@ -4471,8 +4471,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4482,13 +4482,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 133.742417ms + duration: 342.278292ms - id: 128 request: proto: HTTP/1.1 @@ -4506,8 +4506,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -4517,13 +4517,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 122.043333ms + duration: 401.946125ms - id: 129 request: proto: HTTP/1.1 @@ -4541,8 +4541,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4552,13 +4552,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 130.288625ms + duration: 407.909458ms - id: 130 request: proto: HTTP/1.1 @@ -4576,8 +4576,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4585,15 +4585,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.320833ms + duration: 406.356041ms - id: 131 request: proto: HTTP/1.1 @@ -4611,8 +4611,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -4622,13 +4622,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.170583ms + duration: 328.211375ms - id: 132 request: proto: HTTP/1.1 @@ -4646,8 +4646,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -4655,15 +4655,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.667ms + duration: 383.513167ms - id: 133 request: proto: HTTP/1.1 @@ -4681,8 +4681,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4692,13 +4692,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.960875ms + duration: 336.727875ms - id: 134 request: proto: HTTP/1.1 @@ -4716,8 +4716,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4725,15 +4725,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 125.586875ms + duration: 443.383167ms - id: 135 request: proto: HTTP/1.1 @@ -4751,8 +4751,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -4762,13 +4762,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.999125ms + duration: 323.401667ms - id: 136 request: proto: HTTP/1.1 @@ -4786,8 +4786,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -4797,13 +4797,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 147.256125ms + duration: 336.044708ms - id: 137 request: proto: HTTP/1.1 @@ -4821,8 +4821,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -4832,13 +4832,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.404709ms + duration: 355.951958ms - id: 138 request: proto: HTTP/1.1 @@ -4856,8 +4856,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -4867,13 +4867,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.102083ms + duration: 395.253292ms - id: 139 request: proto: HTTP/1.1 @@ -4891,8 +4891,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4900,15 +4900,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.373833ms + duration: 339.456167ms - id: 140 request: proto: HTTP/1.1 @@ -4926,8 +4926,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -4937,13 +4937,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.130791ms + duration: 378.150209ms - id: 141 request: proto: HTTP/1.1 @@ -4961,8 +4961,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4972,13 +4972,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 131.942209ms + duration: 408.130208ms - id: 142 request: proto: HTTP/1.1 @@ -4996,8 +4996,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5005,15 +5005,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.680625ms + duration: 408.664292ms - id: 143 request: proto: HTTP/1.1 @@ -5031,8 +5031,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -5042,13 +5042,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.311542ms + duration: 344.517542ms - id: 144 request: proto: HTTP/1.1 @@ -5066,24 +5066,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI - method: DELETE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 + 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_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 116.918ms + status: 200 OK + code: 200 + duration: 356.317ms - id: 145 request: proto: HTTP/1.1 @@ -5101,8 +5101,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -5112,13 +5112,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.51075ms + duration: 441.920667ms - id: 146 request: proto: HTTP/1.1 @@ -5136,8 +5136,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -5147,13 +5147,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.184166ms + duration: 347.306ms - id: 147 request: proto: HTTP/1.1 @@ -5171,8 +5171,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5182,13 +5182,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 132.763458ms + duration: 354.828625ms - id: 148 request: proto: HTTP/1.1 @@ -5206,8 +5206,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -5215,15 +5215,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.228333ms + duration: 368.892917ms - id: 149 request: proto: HTTP/1.1 @@ -5241,8 +5241,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5252,13 +5252,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.452167ms + duration: 381.178166ms - id: 150 request: proto: HTTP/1.1 @@ -5276,8 +5276,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5285,15 +5285,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.989792ms + duration: 341.887708ms - id: 151 request: proto: HTTP/1.1 @@ -5311,8 +5311,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -5320,15 +5320,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 156.7595ms + duration: 350.670125ms - id: 152 request: proto: HTTP/1.1 @@ -5346,8 +5346,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -5357,13 +5357,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 127.1075ms + duration: 333.238125ms - id: 153 request: proto: HTTP/1.1 @@ -5381,8 +5381,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -5392,13 +5392,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.3445ms + duration: 337.889875ms - id: 154 request: proto: HTTP/1.1 @@ -5416,8 +5416,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -5427,13 +5427,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.754583ms + duration: 329.262458ms - id: 155 request: proto: HTTP/1.1 @@ -5451,8 +5451,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5462,13 +5462,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.901459ms + duration: 336.244459ms - id: 156 request: proto: HTTP/1.1 @@ -5486,8 +5486,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -5497,13 +5497,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.9805ms + duration: 343.460875ms - id: 157 request: proto: HTTP/1.1 @@ -5521,8 +5521,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5532,13 +5532,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.461708ms + duration: 338.261125ms - id: 158 request: proto: HTTP/1.1 @@ -5556,8 +5556,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5573,7 +5573,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.915708ms + duration: 344.28475ms - id: 159 request: proto: HTTP/1.1 @@ -5591,8 +5591,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -5602,13 +5602,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.1505ms + duration: 339.736417ms - id: 160 request: proto: HTTP/1.1 @@ -5626,8 +5626,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -5637,13 +5637,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.151958ms + duration: 335.281458ms - id: 161 request: proto: HTTP/1.1 @@ -5661,8 +5661,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -5672,13 +5672,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 119.693583ms + duration: 335.050333ms - id: 162 request: proto: HTTP/1.1 @@ -5696,8 +5696,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -5707,13 +5707,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 125.611042ms + duration: 330.10175ms - id: 163 request: proto: HTTP/1.1 @@ -5731,8 +5731,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5742,13 +5742,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.053417ms + duration: 356.830792ms - id: 164 request: proto: HTTP/1.1 @@ -5766,24 +5766,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections/con_7Ys4WX2IP8FNuMN7 + 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_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 166.709791ms + status: 204 No Content + code: 204 + duration: 360.315541ms - id: 165 request: proto: HTTP/1.1 @@ -5801,8 +5801,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5810,15 +5810,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.345916ms + duration: 347.627833ms - id: 166 request: proto: HTTP/1.1 @@ -5836,8 +5836,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -5847,13 +5847,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.644ms + duration: 341.258125ms - id: 167 request: proto: HTTP/1.1 @@ -5871,8 +5871,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5882,13 +5882,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.677792ms + duration: 453.506541ms - id: 168 request: proto: HTTP/1.1 @@ -5906,8 +5906,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5915,15 +5915,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 155.458ms + duration: 361.617125ms - id: 169 request: proto: HTTP/1.1 @@ -5941,8 +5941,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -5952,13 +5952,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 126.33675ms + duration: 382.532042ms - id: 170 request: proto: HTTP/1.1 @@ -5976,8 +5976,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -5987,13 +5987,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.391ms + duration: 370.39025ms - id: 171 request: proto: HTTP/1.1 @@ -6011,8 +6011,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6022,13 +6022,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.792583ms + duration: 468.258708ms - id: 172 request: proto: HTTP/1.1 @@ -6046,8 +6046,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6063,7 +6063,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 157.989666ms + duration: 341.667542ms - id: 173 request: proto: HTTP/1.1 @@ -6081,8 +6081,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -6092,13 +6092,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.859125ms + duration: 330.666625ms - id: 174 request: proto: HTTP/1.1 @@ -6116,8 +6116,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -6127,13 +6127,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 125.60975ms + duration: 346.826167ms - id: 175 request: proto: HTTP/1.1 @@ -6151,8 +6151,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -6162,13 +6162,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.451416ms + duration: 386.200375ms - id: 176 request: proto: HTTP/1.1 @@ -6186,8 +6186,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -6197,13 +6197,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.160542ms + duration: 361.201875ms - id: 177 request: proto: HTTP/1.1 @@ -6221,8 +6221,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6232,13 +6232,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.407542ms + duration: 371.241208ms - id: 178 request: proto: HTTP/1.1 @@ -6256,8 +6256,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -6267,13 +6267,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 127.549125ms + duration: 368.773208ms - id: 179 request: proto: HTTP/1.1 @@ -6291,8 +6291,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6300,15 +6300,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.286ms + duration: 332.524792ms - id: 180 request: proto: HTTP/1.1 @@ -6326,24 +6326,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_ZALw4YS3znUQnlDq - method: DELETE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 14 uncompressed: false - body: "" + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 113.263416ms + status: 200 OK + code: 200 + duration: 350.06525ms - id: 181 request: proto: HTTP/1.1 @@ -6361,8 +6361,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -6372,13 +6372,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 177.209708ms + duration: 336.078334ms - id: 182 request: proto: HTTP/1.1 @@ -6396,8 +6396,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -6407,13 +6407,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 127.729833ms + duration: 352.030334ms - id: 183 request: proto: HTTP/1.1 @@ -6431,8 +6431,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -6440,15 +6440,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.863292ms + duration: 358.4305ms - id: 184 request: proto: HTTP/1.1 @@ -6466,8 +6466,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -6477,13 +6477,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.809708ms + duration: 1.023161667s - id: 185 request: proto: HTTP/1.1 @@ -6501,8 +6501,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6512,13 +6512,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.496333ms + duration: 349.769417ms - id: 186 request: proto: HTTP/1.1 @@ -6536,8 +6536,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -6547,13 +6547,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 119.675708ms + duration: 323.671667ms - id: 187 request: proto: HTTP/1.1 @@ -6571,8 +6571,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6582,13 +6582,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.398584ms + duration: 335.397ms - id: 188 request: proto: HTTP/1.1 @@ -6606,8 +6606,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6615,15 +6615,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.885042ms + duration: 337.540791ms - id: 189 request: proto: HTTP/1.1 @@ -6641,8 +6641,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -6650,15 +6650,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.666875ms + duration: 346.678541ms - id: 190 request: proto: HTTP/1.1 @@ -6676,8 +6676,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -6687,13 +6687,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.119167ms + duration: 365.258542ms - id: 191 request: proto: HTTP/1.1 @@ -6711,8 +6711,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -6722,13 +6722,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.075875ms + duration: 397.661833ms - id: 192 request: proto: HTTP/1.1 @@ -6746,8 +6746,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -6757,13 +6757,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.826958ms + duration: 361.1085ms - id: 193 request: proto: HTTP/1.1 @@ -6781,8 +6781,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6792,13 +6792,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.436125ms + duration: 352.445209ms - id: 194 request: proto: HTTP/1.1 @@ -6816,8 +6816,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -6827,13 +6827,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.990875ms + duration: 350.83175ms - id: 195 request: proto: HTTP/1.1 @@ -6851,8 +6851,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6860,15 +6860,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 146.210458ms + duration: 341.704417ms - id: 196 request: proto: HTTP/1.1 @@ -6886,8 +6886,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6895,15 +6895,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.759375ms + duration: 332.014ms - id: 197 request: proto: HTTP/1.1 @@ -6921,8 +6921,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -6932,13 +6932,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.745583ms + duration: 321.218375ms - id: 198 request: proto: HTTP/1.1 @@ -6956,8 +6956,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -6967,13 +6967,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.349333ms + duration: 337.680167ms - id: 199 request: proto: HTTP/1.1 @@ -6991,8 +6991,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -7002,13 +7002,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.099417ms + duration: 348.62775ms - id: 200 request: proto: HTTP/1.1 @@ -7026,8 +7026,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -7037,13 +7037,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.940792ms + duration: 334.942917ms - id: 201 request: proto: HTTP/1.1 @@ -7061,8 +7061,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -7070,15 +7070,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.1765ms + duration: 347.701833ms - id: 202 request: proto: HTTP/1.1 @@ -7096,8 +7096,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -7107,13 +7107,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.698459ms + duration: 325.505875ms - id: 203 request: proto: HTTP/1.1 @@ -7131,8 +7131,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -7142,13 +7142,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.633542ms + duration: 344.60425ms - id: 204 request: proto: HTTP/1.1 @@ -7166,8 +7166,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -7175,15 +7175,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.417625ms + duration: 332.453042ms - id: 205 request: proto: HTTP/1.1 @@ -7201,8 +7201,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -7212,49 +7212,48 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 125.88825ms + duration: 333.944875ms - id: 206 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 63 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"connection_id":"con_ZALw4YS3znUQnlDq","show_as_button":true} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections/con_ZR1gVd2o5zDVZzhR + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 208 + content_length: 0 uncompressed: false - body: '{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}' + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 134.777458ms + status: 204 No Content + code: 204 + duration: 330.614625ms - id: 207 request: proto: HTTP/1.1 @@ -7272,8 +7271,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -7283,13 +7282,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 179.841416ms + duration: 327.552875ms - id: 208 request: proto: HTTP/1.1 @@ -7307,8 +7306,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -7318,13 +7317,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 106.7305ms + duration: 345.33425ms - id: 209 request: proto: HTTP/1.1 @@ -7342,8 +7341,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -7351,15 +7350,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 128.040334ms + duration: 358.096584ms - id: 210 request: proto: HTTP/1.1 @@ -7377,8 +7376,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -7386,15 +7385,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.124042ms + duration: 350.776833ms - id: 211 request: proto: HTTP/1.1 @@ -7412,8 +7411,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -7423,13 +7422,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 133.513875ms + duration: 346.240125ms - id: 212 request: proto: HTTP/1.1 @@ -7447,8 +7446,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -7458,13 +7457,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 130.429625ms + duration: 341.358833ms - id: 213 request: proto: HTTP/1.1 @@ -7482,8 +7481,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -7491,15 +7490,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.115791ms + duration: 340.051ms - id: 214 request: proto: HTTP/1.1 @@ -7517,8 +7516,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -7528,13 +7527,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.059917ms + duration: 364.037625ms - id: 215 request: proto: HTTP/1.1 @@ -7552,8 +7551,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -7563,13 +7562,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.760333ms + duration: 335.857291ms - id: 216 request: proto: HTTP/1.1 @@ -7587,8 +7586,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -7596,15 +7595,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.7165ms + duration: 388.077834ms - id: 217 request: proto: HTTP/1.1 @@ -7622,8 +7621,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -7633,13 +7632,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 126.332375ms + duration: 400.308083ms - id: 218 request: proto: HTTP/1.1 @@ -7657,8 +7656,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -7668,13 +7667,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 125.208834ms + duration: 337.029541ms - id: 219 request: proto: HTTP/1.1 @@ -7692,8 +7691,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -7703,13 +7702,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 127.145375ms + duration: 388.12525ms - id: 220 request: proto: HTTP/1.1 @@ -7727,8 +7726,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -7736,15 +7735,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.708333ms + duration: 345.233333ms - id: 221 request: proto: HTTP/1.1 @@ -7762,8 +7761,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -7773,13 +7772,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.583208ms + duration: 335.015833ms - id: 222 request: proto: HTTP/1.1 @@ -7797,8 +7796,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -7808,13 +7807,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 142.113ms + duration: 340.579292ms - id: 223 request: proto: HTTP/1.1 @@ -7832,8 +7831,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -7841,15 +7840,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.389708ms + duration: 345.993333ms - id: 224 request: proto: HTTP/1.1 @@ -7867,8 +7866,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -7878,13 +7877,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.00325ms + duration: 345.870375ms - id: 225 request: proto: HTTP/1.1 @@ -7902,8 +7901,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -7913,13 +7912,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 138.933125ms + duration: 341.006542ms - id: 226 request: proto: HTTP/1.1 @@ -7937,8 +7936,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -7948,13 +7947,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.057708ms + duration: 359.052791ms - id: 227 request: proto: HTTP/1.1 @@ -7972,8 +7971,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -7981,15 +7980,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 122.219041ms + duration: 353.345917ms - id: 228 request: proto: HTTP/1.1 @@ -8007,8 +8006,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -8018,13 +8017,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.564959ms + duration: 334.029875ms - id: 229 request: proto: HTTP/1.1 @@ -8042,8 +8041,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -8053,13 +8052,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.799875ms + duration: 331.668958ms - id: 230 request: proto: HTTP/1.1 @@ -8077,8 +8076,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -8086,15 +8085,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.554625ms + duration: 336.502833ms - id: 231 request: proto: HTTP/1.1 @@ -8112,8 +8111,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -8123,13 +8122,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.998667ms + duration: 344.767958ms - id: 232 request: proto: HTTP/1.1 @@ -8147,8 +8146,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -8158,13 +8157,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.964792ms + duration: 344.272625ms - id: 233 request: proto: HTTP/1.1 @@ -8182,8 +8181,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -8193,13 +8192,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 128.937708ms + duration: 388.782083ms - id: 234 request: proto: HTTP/1.1 @@ -8217,8 +8216,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -8226,15 +8225,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 119.685125ms + duration: 392.740958ms - id: 235 request: proto: HTTP/1.1 @@ -8252,8 +8251,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -8263,48 +8262,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 128.764792ms + duration: 353.774917ms - id: 236 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 63 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + {"connection_id":"con_ZR1gVd2o5zDVZzhR","show_as_button":true} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/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":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + content_length: 208 + uncompressed: false + body: '{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}' headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 147.604375ms + status: 201 Created + code: 201 + duration: 356.690958ms - id: 237 request: proto: HTTP/1.1 @@ -8322,8 +8322,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -8333,13 +8333,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.593583ms + duration: 354.108125ms - id: 238 request: proto: HTTP/1.1 @@ -8357,8 +8357,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -8368,13 +8368,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.337166ms + duration: 321.176916ms - id: 239 request: proto: HTTP/1.1 @@ -8392,60 +8392,59 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_ZALw4YS3znUQnlDq - method: DELETE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/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_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 124.686625ms + status: 200 OK + code: 200 + duration: 400.479458ms - id: 240 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 64 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"connection_id":"con_ZALw4YS3znUQnlDq","show_as_button":false} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 209 + content_length: 14 uncompressed: false - body: '{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 125.622542ms + status: 200 OK + code: 200 + duration: 327.06ms - id: 241 request: proto: HTTP/1.1 @@ -8463,8 +8462,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -8474,13 +8473,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 119.659417ms + duration: 340.542708ms - id: 242 request: proto: HTTP/1.1 @@ -8498,8 +8497,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -8509,13 +8508,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.4665ms + duration: 336.338042ms - id: 243 request: proto: HTTP/1.1 @@ -8533,8 +8532,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -8544,13 +8543,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.79425ms + duration: 352.916458ms - id: 244 request: proto: HTTP/1.1 @@ -8568,8 +8567,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -8585,7 +8584,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.915292ms + duration: 336.996917ms - id: 245 request: proto: HTTP/1.1 @@ -8603,8 +8602,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -8614,13 +8613,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.739833ms + duration: 336.097166ms - id: 246 request: proto: HTTP/1.1 @@ -8638,8 +8637,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -8649,13 +8648,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.925167ms + duration: 335.934959ms - id: 247 request: proto: HTTP/1.1 @@ -8673,8 +8672,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -8682,15 +8681,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 133.80825ms + duration: 339.62175ms - id: 248 request: proto: HTTP/1.1 @@ -8708,8 +8707,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -8719,13 +8718,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.660167ms + duration: 329.555542ms - id: 249 request: proto: HTTP/1.1 @@ -8743,8 +8742,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -8754,13 +8753,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 135.200708ms + duration: 350.696625ms - id: 250 request: proto: HTTP/1.1 @@ -8778,8 +8777,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -8789,13 +8788,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.5545ms + duration: 351.121292ms - id: 251 request: proto: HTTP/1.1 @@ -8813,8 +8812,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -8824,13 +8823,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.915917ms + duration: 338.950333ms - id: 252 request: proto: HTTP/1.1 @@ -8848,8 +8847,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -8857,15 +8856,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.682083ms + duration: 324.659833ms - id: 253 request: proto: HTTP/1.1 @@ -8883,8 +8882,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -8894,13 +8893,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.95125ms + duration: 345.342792ms - id: 254 request: proto: HTTP/1.1 @@ -8918,8 +8917,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -8927,15 +8926,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 221.282792ms + duration: 337.096542ms - id: 255 request: proto: HTTP/1.1 @@ -8953,8 +8952,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -8964,13 +8963,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 162.190459ms + duration: 336.599ms - id: 256 request: proto: HTTP/1.1 @@ -8988,8 +8987,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -8999,13 +8998,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 147.84625ms + duration: 334.839709ms - id: 257 request: proto: HTTP/1.1 @@ -9023,8 +9022,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -9034,13 +9033,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.999875ms + duration: 341.399375ms - id: 258 request: proto: HTTP/1.1 @@ -9058,8 +9057,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -9069,13 +9068,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.90225ms + duration: 355.196458ms - id: 259 request: proto: HTTP/1.1 @@ -9093,8 +9092,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -9104,13 +9103,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.192875ms + duration: 340.025292ms - id: 260 request: proto: HTTP/1.1 @@ -9128,8 +9127,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -9137,15 +9136,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 125.3965ms + duration: 331.35525ms - id: 261 request: proto: HTTP/1.1 @@ -9163,8 +9162,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -9172,15 +9171,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.6775ms + duration: 438.7705ms - id: 262 request: proto: HTTP/1.1 @@ -9198,8 +9197,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -9209,13 +9208,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.061291ms + duration: 322.54375ms - id: 263 request: proto: HTTP/1.1 @@ -9233,8 +9232,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -9244,13 +9243,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.294833ms + duration: 370.438041ms - id: 264 request: proto: HTTP/1.1 @@ -9268,8 +9267,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -9279,13 +9278,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.886459ms + duration: 326.112708ms - id: 265 request: proto: HTTP/1.1 @@ -9303,8 +9302,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -9314,13 +9313,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.565875ms + duration: 339.752208ms - id: 266 request: proto: HTTP/1.1 @@ -9338,8 +9337,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -9349,13 +9348,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.477291ms + duration: 327.152667ms - id: 267 request: proto: HTTP/1.1 @@ -9373,8 +9372,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -9384,13 +9383,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.44725ms + duration: 352.017541ms - id: 268 request: proto: HTTP/1.1 @@ -9408,8 +9407,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -9425,7 +9424,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 128.904792ms + duration: 340.146625ms - id: 269 request: proto: HTTP/1.1 @@ -9443,8 +9442,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -9454,13 +9453,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 136.08ms + duration: 346.200958ms - id: 270 request: proto: HTTP/1.1 @@ -9478,8 +9477,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -9489,13 +9488,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 139.850667ms + duration: 348.8125ms - id: 271 request: proto: HTTP/1.1 @@ -9513,8 +9512,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -9524,13 +9523,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.238833ms + duration: 335.952958ms - id: 272 request: proto: HTTP/1.1 @@ -9548,8 +9547,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -9559,13 +9558,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.880459ms + duration: 340.165125ms - id: 273 request: proto: HTTP/1.1 @@ -9583,8 +9582,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -9594,13 +9593,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.627875ms + duration: 340.975625ms - id: 274 request: proto: HTTP/1.1 @@ -9618,59 +9617,60 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections/con_ZR1gVd2o5zDVZzhR + 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_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 117.023625ms + status: 204 No Content + code: 204 + duration: 349.895292ms - id: 275 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 64 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + {"connection_id":"con_ZR1gVd2o5zDVZzhR","show_as_button":false} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 + content_length: 209 uncompressed: false - body: '{"members":[]}' + body: '{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}' headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 119.134458ms + status: 201 Created + code: 201 + duration: 361.682375ms - id: 276 request: proto: HTTP/1.1 @@ -9688,24 +9688,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_ZALw4YS3znUQnlDq - method: DELETE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/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_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 115.325416ms + status: 200 OK + code: 200 + duration: 331.071542ms - id: 277 request: proto: HTTP/1.1 @@ -9723,8 +9723,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -9734,13 +9734,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.226959ms + duration: 340.113875ms - id: 278 request: proto: HTTP/1.1 @@ -9758,8 +9758,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -9769,13 +9769,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 135.705167ms + duration: 346.580875ms - id: 279 request: proto: HTTP/1.1 @@ -9793,8 +9793,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -9810,7 +9810,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 135.225042ms + duration: 363.504208ms - id: 280 request: proto: HTTP/1.1 @@ -9828,8 +9828,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -9839,13 +9839,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 413.709625ms + duration: 326.966166ms - id: 281 request: proto: HTTP/1.1 @@ -9863,8 +9863,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -9874,13 +9874,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.251333ms + duration: 342.697084ms - id: 282 request: proto: HTTP/1.1 @@ -9898,8 +9898,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -9909,13 +9909,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.774958ms + duration: 341.3905ms - id: 283 request: proto: HTTP/1.1 @@ -9933,8 +9933,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -9942,15 +9942,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.089667ms + duration: 339.040416ms - id: 284 request: proto: HTTP/1.1 @@ -9968,8 +9968,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -9979,13 +9979,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.322459ms + duration: 338.5825ms - id: 285 request: proto: HTTP/1.1 @@ -10003,8 +10003,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -10012,15 +10012,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 126.992834ms + duration: 358.458875ms - id: 286 request: proto: HTTP/1.1 @@ -10038,8 +10038,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -10049,13 +10049,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.930458ms + duration: 370.6965ms - id: 287 request: proto: HTTP/1.1 @@ -10073,8 +10073,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -10084,13 +10084,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.445167ms + duration: 343.01925ms - id: 288 request: proto: HTTP/1.1 @@ -10108,8 +10108,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -10119,13 +10119,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.3375ms + duration: 352.380458ms - id: 289 request: proto: HTTP/1.1 @@ -10143,8 +10143,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -10154,13 +10154,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 127.335166ms + duration: 343.5055ms - id: 290 request: proto: HTTP/1.1 @@ -10178,8 +10178,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -10189,13 +10189,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.941083ms + duration: 344.809042ms - id: 291 request: proto: HTTP/1.1 @@ -10213,8 +10213,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -10230,7 +10230,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.343209ms + duration: 350.160416ms - id: 292 request: proto: HTTP/1.1 @@ -10248,8 +10248,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -10259,13 +10259,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.446833ms + duration: 408.25625ms - id: 293 request: proto: HTTP/1.1 @@ -10283,8 +10283,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -10294,13 +10294,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 129.760209ms + duration: 333.349333ms - id: 294 request: proto: HTTP/1.1 @@ -10318,8 +10318,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -10329,13 +10329,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.813916ms + duration: 337.764208ms - id: 295 request: proto: HTTP/1.1 @@ -10353,8 +10353,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -10364,13 +10364,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.846667ms + duration: 333.856209ms - id: 296 request: proto: HTTP/1.1 @@ -10388,8 +10388,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -10399,13 +10399,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.448042ms + duration: 371.576875ms - id: 297 request: proto: HTTP/1.1 @@ -10423,8 +10423,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -10432,15 +10432,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.830791ms + duration: 344.828791ms - id: 298 request: proto: HTTP/1.1 @@ -10458,8 +10458,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -10469,13 +10469,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.407042ms + duration: 352.987708ms - id: 299 request: proto: HTTP/1.1 @@ -10493,8 +10493,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -10502,15 +10502,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 138.373333ms + duration: 331.101959ms - id: 300 request: proto: HTTP/1.1 @@ -10528,8 +10528,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -10539,13 +10539,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.4175ms + duration: 350.957417ms - id: 301 request: proto: HTTP/1.1 @@ -10563,8 +10563,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -10574,49 +10574,48 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 126.744958ms + duration: 337.349ms - id: 302 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 100 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":true} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 225 - uncompressed: false - body: '{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}' + content_length: -1 + uncompressed: true + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 132.357666ms + status: 200 OK + code: 200 + duration: 344.043333ms - id: 303 request: proto: HTTP/1.1 @@ -10634,8 +10633,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -10645,13 +10644,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 125.482291ms + duration: 332.821166ms - id: 304 request: proto: HTTP/1.1 @@ -10669,8 +10668,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -10680,13 +10679,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.317541ms + duration: 351.22175ms - id: 305 request: proto: HTTP/1.1 @@ -10704,8 +10703,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -10715,13 +10714,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 126.179333ms + duration: 333.407041ms - id: 306 request: proto: HTTP/1.1 @@ -10739,8 +10738,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -10748,15 +10747,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.559625ms + duration: 352.703667ms - id: 307 request: proto: HTTP/1.1 @@ -10774,8 +10773,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -10783,15 +10782,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.236541ms + duration: 339.025708ms - id: 308 request: proto: HTTP/1.1 @@ -10809,8 +10808,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -10820,13 +10819,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 119.838417ms + duration: 339.110417ms - id: 309 request: proto: HTTP/1.1 @@ -10844,8 +10843,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -10853,15 +10852,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.569167ms + duration: 347.27875ms - id: 310 request: proto: HTTP/1.1 @@ -10879,8 +10878,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -10890,13 +10889,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 122.733458ms + duration: 354.874417ms - id: 311 request: proto: HTTP/1.1 @@ -10914,8 +10913,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -10925,13 +10924,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.980125ms + duration: 347.153875ms - id: 312 request: proto: HTTP/1.1 @@ -10949,8 +10948,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -10960,13 +10959,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.520709ms + duration: 337.542708ms - id: 313 request: proto: HTTP/1.1 @@ -10984,8 +10983,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -10995,13 +10994,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.087458ms + duration: 335.509625ms - id: 314 request: proto: HTTP/1.1 @@ -11019,8 +11018,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -11030,13 +11029,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.2605ms + duration: 366.205958ms - id: 315 request: proto: HTTP/1.1 @@ -11054,8 +11053,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -11063,15 +11062,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.568083ms + duration: 363.490667ms - id: 316 request: proto: HTTP/1.1 @@ -11089,8 +11088,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -11098,15 +11097,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 159.907833ms + duration: 373.944416ms - id: 317 request: proto: HTTP/1.1 @@ -11124,24 +11123,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections/con_ZR1gVd2o5zDVZzhR + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 111.08525ms + status: 204 No Content + code: 204 + duration: 421.059833ms - id: 318 request: proto: HTTP/1.1 @@ -11159,8 +11158,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -11170,13 +11169,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 125.358792ms + duration: 332.344458ms - id: 319 request: proto: HTTP/1.1 @@ -11194,8 +11193,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -11205,13 +11204,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.814167ms + duration: 378.791625ms - id: 320 request: proto: HTTP/1.1 @@ -11229,8 +11228,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -11238,15 +11237,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 132.601958ms + duration: 407.703458ms - id: 321 request: proto: HTTP/1.1 @@ -11264,8 +11263,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -11275,13 +11274,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.459875ms + duration: 331.7665ms - id: 322 request: proto: HTTP/1.1 @@ -11299,8 +11298,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -11310,13 +11309,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.025083ms + duration: 335.437042ms - id: 323 request: proto: HTTP/1.1 @@ -11334,8 +11333,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -11343,15 +11342,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.23175ms + duration: 339.8465ms - id: 324 request: proto: HTTP/1.1 @@ -11369,8 +11368,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -11380,13 +11379,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.363375ms + duration: 348.914ms - id: 325 request: proto: HTTP/1.1 @@ -11404,8 +11403,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -11415,13 +11414,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 149.78525ms + duration: 318.126375ms - id: 326 request: proto: HTTP/1.1 @@ -11439,8 +11438,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -11450,13 +11449,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.603208ms + duration: 329.047083ms - id: 327 request: proto: HTTP/1.1 @@ -11474,8 +11473,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -11483,15 +11482,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.54775ms + duration: 356.385625ms - id: 328 request: proto: HTTP/1.1 @@ -11509,8 +11508,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -11520,13 +11519,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.480834ms + duration: 337.762625ms - id: 329 request: proto: HTTP/1.1 @@ -11544,8 +11543,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -11555,13 +11554,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.707042ms + duration: 328.119958ms - id: 330 request: proto: HTTP/1.1 @@ -11579,8 +11578,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -11588,15 +11587,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 130.746292ms + duration: 331.225292ms - id: 331 request: proto: HTTP/1.1 @@ -11614,8 +11613,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -11625,13 +11624,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.79175ms + duration: 518.324709ms - id: 332 request: proto: HTTP/1.1 @@ -11649,8 +11648,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -11660,13 +11659,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.697625ms + duration: 347.539083ms - id: 333 request: proto: HTTP/1.1 @@ -11684,8 +11683,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -11695,13 +11694,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.660125ms + duration: 341.788167ms - id: 334 request: proto: HTTP/1.1 @@ -11719,8 +11718,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -11728,15 +11727,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.257208ms + duration: 345.088625ms - id: 335 request: proto: HTTP/1.1 @@ -11754,60 +11753,59 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI - method: DELETE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 109.042125ms + status: 200 OK + code: 200 + duration: 343.68425ms - id: 336 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 101 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 226 - uncompressed: false - body: '{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}' + content_length: -1 + uncompressed: true + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 119.414042ms + status: 200 OK + code: 200 + duration: 346.004708ms - id: 337 request: proto: HTTP/1.1 @@ -11825,8 +11823,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -11836,13 +11834,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 122.352458ms + duration: 343.283334ms - id: 338 request: proto: HTTP/1.1 @@ -11860,8 +11858,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -11871,13 +11869,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.152167ms + duration: 337.506458ms - id: 339 request: proto: HTTP/1.1 @@ -11895,8 +11893,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -11906,13 +11904,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.022166ms + duration: 347.41575ms - id: 340 request: proto: HTTP/1.1 @@ -11930,8 +11928,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -11939,15 +11937,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + 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: 131.370708ms + duration: 358.299958ms - id: 341 request: proto: HTTP/1.1 @@ -11965,8 +11963,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -11974,15 +11972,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.129209ms + duration: 323.352667ms - id: 342 request: proto: HTTP/1.1 @@ -12000,8 +11998,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -12011,13 +12009,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 216.978833ms + duration: 344.12ms - id: 343 request: proto: HTTP/1.1 @@ -12035,8 +12033,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -12044,15 +12042,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.114083ms + duration: 367.660708ms - id: 344 request: proto: HTTP/1.1 @@ -12070,8 +12068,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -12081,13 +12079,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.559625ms + duration: 347.515042ms - id: 345 request: proto: HTTP/1.1 @@ -12105,8 +12103,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -12116,13 +12114,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 128.804209ms + duration: 342.189333ms - id: 346 request: proto: HTTP/1.1 @@ -12140,8 +12138,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -12151,48 +12149,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.906959ms + duration: 339.695958ms - id: 347 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 100 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + {"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":true} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/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_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + content_length: 225 + uncompressed: false + body: '{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 120.417959ms + status: 201 Created + code: 201 + duration: 343.367291ms - id: 348 request: proto: HTTP/1.1 @@ -12210,8 +12209,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -12221,13 +12220,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.16075ms + duration: 349.313167ms - id: 349 request: proto: HTTP/1.1 @@ -12245,8 +12244,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -12256,13 +12255,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 127.933958ms + duration: 332.874667ms - id: 350 request: proto: HTTP/1.1 @@ -12280,8 +12279,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -12289,15 +12288,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.969125ms + duration: 349.333125ms - id: 351 request: proto: HTTP/1.1 @@ -12315,8 +12314,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -12324,15 +12323,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 130.961875ms + duration: 338.12925ms - id: 352 request: proto: HTTP/1.1 @@ -12350,8 +12349,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -12361,13 +12360,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.302375ms + duration: 337.079709ms - id: 353 request: proto: HTTP/1.1 @@ -12385,8 +12384,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -12396,13 +12395,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 144.384041ms + duration: 336.216542ms - id: 354 request: proto: HTTP/1.1 @@ -12420,8 +12419,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -12431,13 +12430,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.407208ms + duration: 369.228125ms - id: 355 request: proto: HTTP/1.1 @@ -12455,8 +12454,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -12464,15 +12463,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.216375ms + duration: 328.396375ms - id: 356 request: proto: HTTP/1.1 @@ -12490,8 +12489,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -12501,13 +12500,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.601291ms + duration: 338.464625ms - id: 357 request: proto: HTTP/1.1 @@ -12525,8 +12524,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -12534,15 +12533,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.801625ms + duration: 331.694834ms - id: 358 request: proto: HTTP/1.1 @@ -12560,8 +12559,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -12571,13 +12570,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 131.403166ms + duration: 335.663ms - id: 359 request: proto: HTTP/1.1 @@ -12595,8 +12594,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -12606,13 +12605,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 119.280917ms + duration: 371.465541ms - id: 360 request: proto: HTTP/1.1 @@ -12630,8 +12629,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -12641,13 +12640,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.58125ms + duration: 344.89075ms - id: 361 request: proto: HTTP/1.1 @@ -12665,8 +12664,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -12676,13 +12675,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.753375ms + duration: 330.330792ms - id: 362 request: proto: HTTP/1.1 @@ -12700,8 +12699,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -12711,13 +12710,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.931792ms + duration: 343.837708ms - id: 363 request: proto: HTTP/1.1 @@ -12735,8 +12734,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -12744,15 +12743,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 134.2235ms + duration: 380.737541ms - id: 364 request: proto: HTTP/1.1 @@ -12770,8 +12769,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -12779,15 +12778,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.208458ms + duration: 406.936416ms - id: 365 request: proto: HTTP/1.1 @@ -12805,8 +12804,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -12816,13 +12815,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.820417ms + duration: 335.468708ms - id: 366 request: proto: HTTP/1.1 @@ -12840,8 +12839,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -12851,13 +12850,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 228.333958ms + duration: 329.845416ms - id: 367 request: proto: HTTP/1.1 @@ -12875,8 +12874,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -12886,13 +12885,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 119.808875ms + duration: 375.805ms - id: 368 request: proto: HTTP/1.1 @@ -12910,8 +12909,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -12921,13 +12920,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 122.953375ms + duration: 382.55375ms - id: 369 request: proto: HTTP/1.1 @@ -12945,8 +12944,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -12956,13 +12955,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.958334ms + duration: 619.680833ms - id: 370 request: proto: HTTP/1.1 @@ -12980,8 +12979,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -12991,13 +12990,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 119.7865ms + duration: 415.266833ms - id: 371 request: proto: HTTP/1.1 @@ -13015,8 +13014,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -13032,7 +13031,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.609875ms + duration: 351.020583ms - id: 372 request: proto: HTTP/1.1 @@ -13050,24 +13049,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI - method: DELETE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 113.638583ms + status: 200 OK + code: 200 + duration: 440.166291ms - id: 373 request: proto: HTTP/1.1 @@ -13085,8 +13084,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -13096,13 +13095,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.900042ms + duration: 346.701917ms - id: 374 request: proto: HTTP/1.1 @@ -13120,8 +13119,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -13131,13 +13130,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.510542ms + duration: 342.780125ms - id: 375 request: proto: HTTP/1.1 @@ -13155,8 +13154,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -13164,15 +13163,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 130.46625ms + duration: 337.774791ms - id: 376 request: proto: HTTP/1.1 @@ -13190,8 +13189,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -13201,13 +13200,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.5635ms + duration: 347.426458ms - id: 377 request: proto: HTTP/1.1 @@ -13225,8 +13224,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -13236,13 +13235,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 140.570709ms + duration: 337.146583ms - id: 378 request: proto: HTTP/1.1 @@ -13260,8 +13259,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -13271,13 +13270,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 122.075958ms + duration: 371.484417ms - id: 379 request: proto: HTTP/1.1 @@ -13295,8 +13294,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -13304,15 +13303,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.203166ms + duration: 330.2195ms - id: 380 request: proto: HTTP/1.1 @@ -13330,8 +13329,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -13341,13 +13340,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.017375ms + duration: 330.118916ms - id: 381 request: proto: HTTP/1.1 @@ -13365,8 +13364,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -13374,15 +13373,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.922417ms + duration: 345.432666ms - id: 382 request: proto: HTTP/1.1 @@ -13400,8 +13399,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -13411,13 +13410,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.697791ms + duration: 415.393541ms - id: 383 request: proto: HTTP/1.1 @@ -13435,8 +13434,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -13446,13 +13445,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.25725ms + duration: 333.244333ms - id: 384 request: proto: HTTP/1.1 @@ -13470,8 +13469,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -13481,13 +13480,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.396917ms + duration: 563.360791ms - id: 385 request: proto: HTTP/1.1 @@ -13505,59 +13504,60 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections/con_7Ys4WX2IP8FNuMN7 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 113.105167ms + status: 204 No Content + code: 204 + duration: 364.235417ms - id: 386 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 101 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + {"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/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":[],"start":0,"limit":0,"total":0}' + content_length: 226 + uncompressed: false + body: '{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 161.419541ms + status: 201 Created + code: 201 + duration: 391.798333ms - id: 387 request: proto: HTTP/1.1 @@ -13575,8 +13575,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -13584,15 +13584,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.806625ms + duration: 378.222125ms - id: 388 request: proto: HTTP/1.1 @@ -13610,8 +13610,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -13621,13 +13621,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.156667ms + duration: 383.0255ms - id: 389 request: proto: HTTP/1.1 @@ -13645,8 +13645,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -13656,13 +13656,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.2305ms + duration: 446.06725ms - id: 390 request: proto: HTTP/1.1 @@ -13680,8 +13680,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -13689,15 +13689,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.613042ms + duration: 337.281708ms - id: 391 request: proto: HTTP/1.1 @@ -13715,8 +13715,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -13726,13 +13726,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.129792ms + duration: 343.562042ms - id: 392 request: proto: HTTP/1.1 @@ -13750,8 +13750,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -13761,13 +13761,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.690291ms + duration: 411.049583ms - id: 393 request: proto: HTTP/1.1 @@ -13785,8 +13785,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -13794,15 +13794,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 128.158667ms + duration: 476.373458ms - id: 394 request: proto: HTTP/1.1 @@ -13820,8 +13820,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -13829,15 +13829,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.98475ms + duration: 346.135542ms - id: 395 request: proto: HTTP/1.1 @@ -13855,8 +13855,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -13866,13 +13866,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.325667ms + duration: 329.9885ms - id: 396 request: proto: HTTP/1.1 @@ -13890,8 +13890,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -13901,49 +13901,48 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.029375ms + duration: 336.867042ms - id: 397 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 75 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 226 - uncompressed: false - body: '{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}' + content_length: -1 + uncompressed: true + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 117.722375ms + status: 200 OK + code: 200 + duration: 340.43625ms - id: 398 request: proto: HTTP/1.1 @@ -13961,8 +13960,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -13972,49 +13971,48 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.664417ms + duration: 368.801417ms - id: 399 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 75 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/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: 207 - uncompressed: false - body: '{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 135.638375ms + status: 200 OK + code: 200 + duration: 385.101ms - id: 400 request: proto: HTTP/1.1 @@ -14032,8 +14030,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -14043,13 +14041,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.217292ms + duration: 358.97075ms - id: 401 request: proto: HTTP/1.1 @@ -14067,8 +14065,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -14078,13 +14076,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.641208ms + duration: 338.079333ms - id: 402 request: proto: HTTP/1.1 @@ -14102,8 +14100,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -14111,15 +14109,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.614209ms + duration: 332.534ms - id: 403 request: proto: HTTP/1.1 @@ -14137,8 +14135,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -14148,13 +14146,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.38875ms + duration: 364.125583ms - id: 404 request: proto: HTTP/1.1 @@ -14172,8 +14170,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -14183,13 +14181,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 119.018208ms + duration: 334.318417ms - id: 405 request: proto: HTTP/1.1 @@ -14207,8 +14205,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -14218,13 +14216,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.995209ms + duration: 352.261791ms - id: 406 request: proto: HTTP/1.1 @@ -14242,8 +14240,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -14253,13 +14251,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.596916ms + duration: 406.516708ms - id: 407 request: proto: HTTP/1.1 @@ -14277,8 +14275,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -14288,13 +14286,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 119.347625ms + duration: 375.105708ms - id: 408 request: proto: HTTP/1.1 @@ -14312,8 +14310,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -14323,13 +14321,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.382958ms + duration: 354.608375ms - id: 409 request: proto: HTTP/1.1 @@ -14347,8 +14345,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -14356,15 +14354,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.722417ms + duration: 367.380959ms - id: 410 request: proto: HTTP/1.1 @@ -14382,8 +14380,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -14391,15 +14389,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.794167ms + duration: 366.927042ms - id: 411 request: proto: HTTP/1.1 @@ -14417,8 +14415,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -14428,13 +14426,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.083917ms + duration: 469.877375ms - id: 412 request: proto: HTTP/1.1 @@ -14452,8 +14450,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -14463,13 +14461,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.839333ms + duration: 355.279959ms - id: 413 request: proto: HTTP/1.1 @@ -14487,8 +14485,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -14498,13 +14496,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.42775ms + duration: 384.318833ms - id: 414 request: proto: HTTP/1.1 @@ -14522,8 +14520,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -14533,13 +14531,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 146.779417ms + duration: 361.458083ms - id: 415 request: proto: HTTP/1.1 @@ -14557,8 +14555,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -14568,13 +14566,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.413875ms + duration: 344.043833ms - id: 416 request: proto: HTTP/1.1 @@ -14592,8 +14590,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -14603,13 +14601,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.942542ms + duration: 961.445917ms - id: 417 request: proto: HTTP/1.1 @@ -14627,8 +14625,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -14638,13 +14636,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 130.354416ms + duration: 345.073333ms - id: 418 request: proto: HTTP/1.1 @@ -14662,8 +14660,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -14679,7 +14677,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 144.48275ms + duration: 359.533791ms - id: 419 request: proto: HTTP/1.1 @@ -14697,8 +14695,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -14708,13 +14706,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.527167ms + duration: 407.610541ms - id: 420 request: proto: HTTP/1.1 @@ -14732,8 +14730,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: GET response: proto: HTTP/2.0 @@ -14743,13 +14741,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.12975ms + duration: 348.275625ms - id: 421 request: proto: HTTP/1.1 @@ -14767,8 +14765,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -14776,15 +14774,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.92525ms + duration: 355.960416ms - id: 422 request: proto: HTTP/1.1 @@ -14802,8 +14800,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR method: GET response: proto: HTTP/2.0 @@ -14813,13 +14811,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.83875ms + duration: 343.01ms - id: 423 request: proto: HTTP/1.1 @@ -14837,8 +14835,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -14848,13 +14846,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.322083ms + duration: 348.64025ms - id: 424 request: proto: HTTP/1.1 @@ -14872,8 +14870,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -14883,13 +14881,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 130.803458ms + duration: 324.898625ms - id: 425 request: proto: HTTP/1.1 @@ -14907,8 +14905,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -14918,13 +14916,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"enabled_connections":[{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.662709ms + duration: 344.869375ms - id: 426 request: proto: HTTP/1.1 @@ -14942,8 +14940,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -14951,15 +14949,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 128.573417ms + duration: 348.790708ms - id: 427 request: proto: HTTP/1.1 @@ -14977,8 +14975,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_ZALw4YS3znUQnlDq + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -14988,13 +14986,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.764625ms + duration: 333.477208ms - id: 428 request: proto: HTTP/1.1 @@ -15012,24 +15010,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections/con_7Ys4WX2IP8FNuMN7 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 120.714208ms + status: 204 No Content + code: 204 + duration: 531.029584ms - id: 429 request: proto: HTTP/1.1 @@ -15047,8 +15045,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en method: GET response: proto: HTTP/2.0 @@ -15058,13 +15056,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.091084ms + duration: 344.602625ms - id: 430 request: proto: HTTP/1.1 @@ -15082,8 +15080,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -15091,15 +15089,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + 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.523333ms + duration: 380.86825ms - id: 431 request: proto: HTTP/1.1 @@ -15117,24 +15115,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_ZALw4YS3znUQnlDq - method: DELETE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 14 uncompressed: false - body: "" + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 118.28775ms + status: 200 OK + code: 200 + duration: 359.458542ms - id: 432 request: proto: HTTP/1.1 @@ -15152,24 +15150,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_ZALw4YS3znUQnlDq - method: DELETE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 140.289375ms + status: 200 OK + code: 200 + duration: 337.972417ms - id: 433 request: proto: HTTP/1.1 @@ -15187,24 +15185,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI - method: DELETE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 + 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_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 122.596709ms + status: 200 OK + code: 200 + duration: 632.688542ms - id: 434 request: proto: HTTP/1.1 @@ -15222,24 +15220,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI - method: DELETE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR + 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_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 114.15425ms + status: 200 OK + code: 200 + duration: 407.609167ms - id: 435 request: proto: HTTP/1.1 @@ -15257,24 +15255,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO - method: DELETE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en + 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_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 121.222708ms + status: 200 OK + code: 200 + duration: 321.151166ms - id: 436 request: proto: HTTP/1.1 @@ -15292,24 +15290,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq - method: DELETE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 41 - uncompressed: false - body: '{"deleted_at":"2024-07-08T20:05:15.526Z"}' + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 - status: 202 Accepted - code: 202 - duration: 149.51975ms + status: 200 OK + code: 200 + duration: 501.655959ms - id: 437 request: proto: HTTP/1.1 @@ -15327,8 +15325,2250 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.7.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/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: 354.495541ms + - id: 438 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 338.097959ms + - id: 439 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 408.532625ms + - id: 440 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 423.35575ms + - id: 441 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 353.781083ms + - id: 442 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 324.944334ms + - id: 443 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 403.4665ms + - id: 444 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/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: 383.090459ms + - id: 445 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 330.955542ms + - id: 446 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 353.380167ms + - id: 447 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 354.314209ms + - id: 448 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 357.209959ms + - id: 449 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 327.977833ms + - id: 450 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 452.996458ms + - id: 451 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/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: 409.458292ms + - id: 452 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 407.594209ms + - id: 453 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 396.395792ms + - id: 454 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 459.772875ms + - id: 455 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 389.26325ms + - id: 456 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 388.105458ms + - id: 457 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 75 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 226 + uncompressed: false + body: '{"connection_id":"con_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 398.950125ms + - id: 458 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections/con_7Ys4WX2IP8FNuMN7 + 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_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 384.72575ms + - id: 459 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 75 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 207 + uncompressed: false + body: '{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 365.34875ms + - id: 460 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections/con_ZR1gVd2o5zDVZzhR + 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_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 474.549916ms + - id: 461 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 358.69175ms + - id: 462 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 409.67125ms + - id: 463 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 1.224263958s + - id: 464 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections/con_7Ys4WX2IP8FNuMN7 + 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_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 342.947959ms + - id: 465 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections/con_ZR1gVd2o5zDVZzhR + 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_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 460.943291ms + - id: 466 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/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_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 337.038208ms + - id: 467 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 355.486083ms + - id: 468 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/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_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 424.54775ms + - id: 469 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 406.042ms + - id: 470 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 371.998333ms + - id: 471 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 367.767458ms + - id: 472 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 391.285ms + - id: 473 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 324.463125ms + - id: 474 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections/con_7Ys4WX2IP8FNuMN7 + 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_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 345.794583ms + - id: 475 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/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_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 527.816833ms + - id: 476 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections/con_ZR1gVd2o5zDVZzhR + 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_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 329.56875ms + - id: 477 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 354.018959ms + - id: 478 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/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_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 398.26325ms + - id: 479 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 407.965375ms + - id: 480 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 411.583584ms + - id: 481 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 324.919ms + - id: 482 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/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_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 347.541667ms + - id: 483 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 337.513792ms + - id: 484 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 447.152791ms + - id: 485 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_7Ys4WX2IP8FNuMN7","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 412.118083ms + - id: 486 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_ZR1gVd2o5zDVZzhR","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 400.28375ms + - id: 487 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 341.480334ms + - id: 488 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections/con_7Ys4WX2IP8FNuMN7 + 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_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 435.726875ms + - id: 489 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/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_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 435.054875ms + - id: 490 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_gAovmvcsx3u3w9en","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 322.794666ms + - id: 491 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections/con_ZR1gVd2o5zDVZzhR + 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_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 343.566333ms + - id: 492 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/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_7Ys4WX2IP8FNuMN7","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZR1gVd2o5zDVZzhR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 387.296584ms + - id: 493 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 335.395167ms + - id: 494 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 377.657083ms + - id: 495 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections/con_ZR1gVd2o5zDVZzhR + 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: 329.155708ms + - id: 496 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections/con_7Ys4WX2IP8FNuMN7 + 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: 341.741833ms + - id: 497 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections/con_ZR1gVd2o5zDVZzhR + 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: 321.655875ms + - id: 498 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en/enabled_connections/con_7Ys4WX2IP8FNuMN7 + 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: 337.245083ms + - id: 499 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_gAovmvcsx3u3w9en + 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: 442.632291ms + - id: 500 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZR1gVd2o5zDVZzhR + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41 + uncompressed: false + body: '{"deleted_at":"2024-09-23T06:23:51.076Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 202 Accepted + code: 202 + duration: 381.447417ms + - id: 501 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7Ys4WX2IP8FNuMN7 method: DELETE response: proto: HTTP/2.0 @@ -15338,10 +17578,10 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2024-07-08T20:05:15.694Z"}' + body: '{"deleted_at":"2024-09-23T06:23:51.457Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 125.576583ms + duration: 337.4725ms diff --git a/test/data/recordings/TestAccOrganizationMember.yaml b/test/data/recordings/TestAccOrganizationMember.yaml index 4c406e8de..85d52229a 100644 --- a/test/data/recordings/TestAccOrganizationMember.yaml +++ b/test/data/recordings/TestAccOrganizationMember.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users method: POST response: @@ -30,33 +30,32 @@ interactions: trailer: {} content_length: 594 uncompressed: false - body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' + body: '{"created_at":"2024-09-23T06:29:34.151Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10ace013dcad0c0dd0491","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:34.151Z","user_id":"auth0|66f10ace013dcad0c0dd0491","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 439.386167ms + duration: 500.749375ms - id: 1 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10ace013dcad0c0dd0491 method: GET response: proto: HTTP/2.0 @@ -66,13 +65,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' + body: '{"created_at":"2024-09-23T06:29:34.151Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10ace013dcad0c0dd0491","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:34.151Z","user_id":"auth0|66f10ace013dcad0c0dd0491","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 315.610125ms + duration: 413.2335ms - id: 2 request: proto: HTTP/1.1 @@ -91,7 +90,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users method: POST response: @@ -102,33 +101,32 @@ interactions: trailer: {} content_length: 594 uncompressed: false - body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' + body: '{"created_at":"2024-09-23T06:29:35.083Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10acf763eff518d18802a","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:35.084Z","user_id":"auth0|66f10acf763eff518d18802a","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 448.071625ms + duration: 577.687833ms - id: 3 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10acf763eff518d18802a method: GET response: proto: HTTP/2.0 @@ -138,13 +136,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' + body: '{"created_at":"2024-09-23T06:29:35.083Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10acf763eff518d18802a","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:35.084Z","user_id":"auth0|66f10acf763eff518d18802a","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.138ms + duration: 339.031833ms - id: 4 request: proto: HTTP/1.1 @@ -163,7 +161,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations method: POST response: @@ -174,33 +172,32 @@ interactions: trailer: {} content_length: 116 uncompressed: false - body: '{"id":"org_d5ivchkU2BNzWgUW","display_name":"testaccorganizationmember","name":"some-org-testaccorganizationmember"}' + body: '{"id":"org_kqWAstQju59VaVbD","display_name":"testaccorganizationmember","name":"some-org-testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 307.007042ms + duration: 362.428333ms - id: 5 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: GET response: proto: HTTP/2.0 @@ -210,13 +207,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.084042ms + duration: 429.290459ms - id: 6 request: proto: HTTP/1.1 @@ -229,14 +226,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|66549949465f0d3c058a33ba"]} + {"members":["auth0|66f10ace013dcad0c0dd0491"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members method: POST response: proto: HTTP/2.0 @@ -252,27 +249,26 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 322.03825ms + duration: 370.236792ms - id: 7 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -282,33 +278,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTozOS42NDkwMDBVVEMsYXV0aDB8NjY1NDk5NDk0NjVmMGQzYzA1OGEzM2Jh"}' + body: '{"members":[{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjoyOTozNi42NjQwMDBVVEMsYXV0aDB8NjZmMTBhY2UwMTNkY2FkMGMwZGQwNDkx"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 325.193417ms + duration: 352.35925ms - id: 8 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTozOS42NDkwMDBVVEMsYXV0aDB8NjY1NDk5NDk0NjVmMGQzYzA1OGEzM2Jh&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyOTozNi42NjQwMDBVVEMsYXV0aDB8NjZmMTBhY2UwMTNkY2FkMGMwZGQwNDkx&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -324,27 +319,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.812625ms + duration: 387.767458ms - id: 9 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: GET response: proto: HTTP/2.0 @@ -354,33 +348,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.953166ms + duration: 401.267416ms - id: 10 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -396,27 +389,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.686625ms + duration: 408.439208ms - id: 11 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -426,33 +418,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTozOS42NDkwMDBVVEMsYXV0aDB8NjY1NDk5NDk0NjVmMGQzYzA1OGEzM2Jh"}' + body: '{"members":[{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjoyOTozNi42NjQwMDBVVEMsYXV0aDB8NjZmMTBhY2UwMTNkY2FkMGMwZGQwNDkx"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.919334ms + duration: 368.405292ms - id: 12 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTozOS42NDkwMDBVVEMsYXV0aDB8NjY1NDk5NDk0NjVmMGQzYzA1OGEzM2Jh&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyOTozNi42NjQwMDBVVEMsYXV0aDB8NjZmMTBhY2UwMTNkY2FkMGMwZGQwNDkx&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -468,27 +459,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 337.082542ms + duration: 341.142542ms - id: 13 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -498,33 +488,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.111083ms + duration: 387.004625ms - id: 14 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: GET response: proto: HTTP/2.0 @@ -534,33 +523,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 317.873458ms + duration: 372.129792ms - id: 15 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -570,33 +558,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTozOS42NDkwMDBVVEMsYXV0aDB8NjY1NDk5NDk0NjVmMGQzYzA1OGEzM2Jh"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 317.755792ms + duration: 334.965833ms - id: 16 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTozOS42NDkwMDBVVEMsYXV0aDB8NjY1NDk5NDk0NjVmMGQzYzA1OGEzM2Jh&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -604,35 +591,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjoyOTozNi42NjQwMDBVVEMsYXV0aDB8NjZmMTBhY2UwMTNkY2FkMGMwZGQwNDkx"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.560583ms + duration: 393.211167ms - id: 17 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyOTozNi42NjQwMDBVVEMsYXV0aDB8NjZmMTBhY2UwMTNkY2FkMGMwZGQwNDkx&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -640,35 +626,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.299667ms + duration: 406.194917ms - id: 18 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -678,33 +663,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.906667ms + duration: 411.2365ms - 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10ace013dcad0c0dd0491 method: GET response: proto: HTTP/2.0 @@ -714,33 +698,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"created_at":"2024-09-23T06:29:34.151Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10ace013dcad0c0dd0491","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:34.151Z","user_id":"auth0|66f10ace013dcad0c0dd0491","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.478625ms + duration: 339.866834ms - id: 20 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10acf763eff518d18802a method: GET response: proto: HTTP/2.0 @@ -750,33 +733,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTozOS42NDkwMDBVVEMsYXV0aDB8NjY1NDk5NDk0NjVmMGQzYzA1OGEzM2Jh"}' + body: '{"created_at":"2024-09-23T06:29:35.083Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10acf763eff518d18802a","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:35.084Z","user_id":"auth0|66f10acf763eff518d18802a","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.77925ms + duration: 431.764875ms - 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTozOS42NDkwMDBVVEMsYXV0aDB8NjY1NDk5NDk0NjVmMGQzYzA1OGEzM2Jh&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: GET response: proto: HTTP/2.0 @@ -784,35 +766,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.883417ms + duration: 392.962458ms - id: 22 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -822,33 +803,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"members":[{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjoyOTozNi42NjQwMDBVVEMsYXV0aDB8NjZmMTBhY2UwMTNkY2FkMGMwZGQwNDkx"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.677292ms + duration: 376.929625ms - id: 23 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyOTozNi42NjQwMDBVVEMsYXV0aDB8NjZmMTBhY2UwMTNkY2FkMGMwZGQwNDkx&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -856,35 +836,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.883291ms + duration: 343.928292ms - id: 24 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: GET response: proto: HTTP/2.0 @@ -894,33 +873,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTozOS42NDkwMDBVVEMsYXV0aDB8NjY1NDk5NDk0NjVmMGQzYzA1OGEzM2Jh"}' + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.18475ms + duration: 338.700541ms - id: 25 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTozOS42NDkwMDBVVEMsYXV0aDB8NjY1NDk5NDk0NjVmMGQzYzA1OGEzM2Jh&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -928,35 +906,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + 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: 285.18575ms + duration: 359.438834ms - id: 26 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -966,33 +943,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' + body: '{"members":[{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjoyOTozNi42NjQwMDBVVEMsYXV0aDB8NjZmMTBhY2UwMTNkY2FkMGMwZGQwNDkx"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.253166ms + duration: 342.338209ms - id: 27 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyOTozNi42NjQwMDBVVEMsYXV0aDB8NjZmMTBhY2UwMTNkY2FkMGMwZGQwNDkx&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1000,35 +976,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.507541ms + duration: 327.28075ms - id: 28 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1038,33 +1013,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 468.258458ms + duration: 329.32525ms - id: 29 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10ace013dcad0c0dd0491 method: GET response: proto: HTTP/2.0 @@ -1074,33 +1048,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTozOS42NDkwMDBVVEMsYXV0aDB8NjY1NDk5NDk0NjVmMGQzYzA1OGEzM2Jh"}' + body: '{"created_at":"2024-09-23T06:29:34.151Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10ace013dcad0c0dd0491","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:34.151Z","user_id":"auth0|66f10ace013dcad0c0dd0491","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 318.74525ms + duration: 343.826083ms - id: 30 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTozOS42NDkwMDBVVEMsYXV0aDB8NjY1NDk5NDk0NjVmMGQzYzA1OGEzM2Jh&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10acf763eff518d18802a method: GET response: proto: HTTP/2.0 @@ -1108,71 +1081,69 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-09-23T06:29:35.083Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10acf763eff518d18802a","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:35.084Z","user_id":"auth0|66f10acf763eff518d18802a","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 352.89075ms + duration: 372.081375ms - id: 31 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"members":["auth0|6654994a3d0a9374995dbe52"]} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD + 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_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 352.230791ms + status: 200 OK + code: 200 + duration: 338.713791ms - id: 32 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1182,33 +1153,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' + body: '{"members":[{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjoyOTozNi42NjQwMDBVVEMsYXV0aDB8NjZmMTBhY2UwMTNkY2FkMGMwZGQwNDkx"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 436.029584ms + duration: 358.127209ms - id: 33 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyOTozNi42NjQwMDBVVEMsYXV0aDB8NjZmMTBhY2UwMTNkY2FkMGMwZGQwNDkx&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1224,63 +1194,62 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 354.261209ms + duration: 316.490375ms - id: 34 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|66f10acf763eff518d18802a"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 284.34875ms + status: 204 No Content + code: 204 + duration: 373.857584ms - id: 35 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1290,33 +1259,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"members":[{"user_id":"auth0|66f10acf763eff518d18802a"},{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjoyOTo0OC44ODYwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.606292ms + duration: 342.750166ms - id: 36 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyOTo0OC44ODYwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1324,35 +1292,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.049ms + duration: 384.6805ms - id: 37 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: GET response: proto: HTTP/2.0 @@ -1360,35 +1327,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.18575ms + duration: 398.280875ms - id: 38 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1398,33 +1364,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.229125ms + duration: 342.167542ms - id: 39 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1434,33 +1399,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"members":[{"user_id":"auth0|66f10acf763eff518d18802a"},{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjoyOTo0OC44ODYwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.981333ms + duration: 363.419ms - id: 40 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyOTo0OC44ODYwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1468,35 +1432,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 316.136375ms + duration: 340.084375ms - id: 41 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1504,35 +1467,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.4085ms + duration: 346.011292ms - id: 42 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: GET response: proto: HTTP/2.0 @@ -1542,33 +1504,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.985917ms + duration: 323.221209ms - id: 43 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1578,33 +1539,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 323.812125ms + duration: 336.144959ms - id: 44 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1614,33 +1574,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"members":[{"user_id":"auth0|66f10acf763eff518d18802a"},{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjoyOTo0OC44ODYwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.877792ms + duration: 333.672417ms - id: 45 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyOTo0OC44ODYwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1648,35 +1607,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 387.233333ms + duration: 393.474542ms - id: 46 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1684,35 +1642,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.148042ms + duration: 406.512541ms - id: 47 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10ace013dcad0c0dd0491 method: GET response: proto: HTTP/2.0 @@ -1722,33 +1679,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' + body: '{"created_at":"2024-09-23T06:29:34.151Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10ace013dcad0c0dd0491","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:34.151Z","user_id":"auth0|66f10ace013dcad0c0dd0491","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.562917ms + duration: 337.219292ms - id: 48 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10acf763eff518d18802a method: GET response: proto: HTTP/2.0 @@ -1756,35 +1712,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-09-23T06:29:35.083Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10acf763eff518d18802a","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:35.084Z","user_id":"auth0|66f10acf763eff518d18802a","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.953417ms + duration: 333.885584ms - id: 49 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: GET response: proto: HTTP/2.0 @@ -1794,33 +1749,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.636ms + duration: 329.672ms - id: 50 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1830,33 +1784,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"members":[{"user_id":"auth0|66f10acf763eff518d18802a"},{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjoyOTo0OC44ODYwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.306458ms + duration: 413.242792ms - id: 51 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyOTo0OC44ODYwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1864,35 +1817,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.981291ms + duration: 406.26975ms - id: 52 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1900,35 +1852,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' - headers: + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|66f10acf763eff518d18802a"},{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjoyOTo0OC44ODYwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh"}' + headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.450708ms + duration: 408.442083ms - id: 53 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyOTo0OC44ODYwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1936,35 +1887,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.386833ms + duration: 402.547959ms - id: 54 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: GET response: proto: HTTP/2.0 @@ -1974,33 +1924,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.467833ms + duration: 325.92275ms - id: 55 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2010,33 +1959,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.587166ms + duration: 340.01375ms - id: 56 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2046,33 +1994,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' + body: '{"members":[{"user_id":"auth0|66f10acf763eff518d18802a"},{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjoyOTo0OC44ODYwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.5835ms + duration: 453.136167ms - id: 57 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyOTo0OC44ODYwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2088,27 +2035,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 317.952458ms + duration: 410.308917ms - id: 58 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2116,35 +2062,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 318.22ms + duration: 408.207459ms - id: 59 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10ace013dcad0c0dd0491 method: GET response: proto: HTTP/2.0 @@ -2154,33 +2099,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"created_at":"2024-09-23T06:29:34.151Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10ace013dcad0c0dd0491","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:34.151Z","user_id":"auth0|66f10ace013dcad0c0dd0491","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 314.618667ms + duration: 327.187417ms - id: 60 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2190,33 +2134,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"members":[{"user_id":"auth0|66f10acf763eff518d18802a"},{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjoyOTo0OC44ODYwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 266.741ms + duration: 354.049916ms - id: 61 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2226,33 +2169,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"members":[{"user_id":"auth0|66f10acf763eff518d18802a"},{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjoyOTo0OC44ODYwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.71375ms + duration: 375.031917ms - id: 62 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10acf763eff518d18802a method: GET response: proto: HTTP/2.0 @@ -2262,33 +2204,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' + body: '{"created_at":"2024-09-23T06:29:35.083Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10acf763eff518d18802a","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:35.084Z","user_id":"auth0|66f10acf763eff518d18802a","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 330.170542ms + duration: 348.774917ms - id: 63 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyOTo0OC44ODYwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2304,99 +2245,96 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.807292ms + duration: 342.501708ms - id: 64 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"members":["auth0|6654994a3d0a9374995dbe52"]} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members - method: DELETE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyOTo0OC44ODYwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 14 uncompressed: false - body: "" + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 477.656458ms + status: 200 OK + code: 200 + duration: 334.998083ms - id: 65 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"members":["auth0|66549949465f0d3c058a33ba"]} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members - method: DELETE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD + 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_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 298.335416ms + status: 200 OK + code: 200 + duration: 362.309583ms - id: 66 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: GET response: proto: HTTP/2.0 @@ -2406,33 +2344,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.495541ms + duration: 401.605583ms - id: 67 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2448,27 +2385,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 380.39575ms + duration: 410.654459ms - id: 68 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2476,35 +2412,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|66f10acf763eff518d18802a"},{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjoyOTo0OC44ODYwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 471.634333ms + duration: 337.5915ms - id: 69 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyOTo0OC44ODYwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2512,35 +2447,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 338.773875ms + duration: 375.555458ms - id: 70 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2550,105 +2484,104 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 347.181625ms + duration: 367.508375ms - id: 71 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|66f10acf763eff518d18802a"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 353.858833ms + status: 204 No Content + code: 204 + duration: 387.896709ms - id: 72 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|66f10ace013dcad0c0dd0491"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 420.402166ms + status: 204 No Content + code: 204 + duration: 352.6265ms - id: 73 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: GET response: proto: HTTP/2.0 @@ -2658,33 +2591,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 351.781208ms + duration: 342.265583ms - id: 74 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2692,35 +2624,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + 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: 308.138083ms + duration: 365.02525ms - id: 75 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2728,35 +2659,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.992375ms + duration: 330.568083ms - id: 76 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2766,33 +2696,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 317.134333ms + duration: 332.081667ms - id: 77 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10ace013dcad0c0dd0491 method: GET response: proto: HTTP/2.0 @@ -2802,33 +2731,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"created_at":"2024-09-23T06:29:34.151Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10ace013dcad0c0dd0491","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:34.151Z","user_id":"auth0|66f10ace013dcad0c0dd0491","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.10775ms + duration: 345.943541ms - id: 78 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10acf763eff518d18802a method: GET response: proto: HTTP/2.0 @@ -2838,33 +2766,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"created_at":"2024-09-23T06:29:35.083Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10acf763eff518d18802a","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:35.084Z","user_id":"auth0|66f10acf763eff518d18802a","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.061917ms + duration: 322.235667ms - id: 79 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: GET response: proto: HTTP/2.0 @@ -2874,33 +2801,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.849083ms + duration: 354.236709ms - id: 80 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: GET response: proto: HTTP/2.0 @@ -2908,35 +2834,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 351.223959ms + duration: 324.087917ms - id: 81 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2946,33 +2871,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 894.300958ms + duration: 324.273292ms - id: 82 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2980,35 +2904,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.072167ms + duration: 323.485292ms - id: 83 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -3018,33 +2941,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.74225ms + duration: 350.68075ms - id: 84 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10ace013dcad0c0dd0491 method: GET response: proto: HTTP/2.0 @@ -3054,33 +2976,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"created_at":"2024-09-23T06:29:34.151Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10ace013dcad0c0dd0491","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:34.151Z","user_id":"auth0|66f10ace013dcad0c0dd0491","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.989042ms + duration: 345.9035ms - 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10acf763eff518d18802a method: GET response: proto: HTTP/2.0 @@ -3090,33 +3011,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"created_at":"2024-09-23T06:29:35.083Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10acf763eff518d18802a","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:35.084Z","user_id":"auth0|66f10acf763eff518d18802a","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.995416ms + duration: 321.232125ms - 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: GET response: proto: HTTP/2.0 @@ -3124,35 +3044,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 272.970084ms + duration: 343.741666ms - id: 87 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: GET response: proto: HTTP/2.0 @@ -3162,33 +3081,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 273.051583ms + duration: 339.957792ms - id: 88 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3198,33 +3116,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.804709ms + duration: 343.002625ms - id: 89 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3232,35 +3149,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.616625ms + duration: 342.996666ms - id: 90 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -3268,71 +3184,69 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.282042ms + duration: 353.328916ms - id: 91 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 80 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"members":["auth0|66549949465f0d3c058a33ba","auth0|6654994a3d0a9374995dbe52"]} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10ace013dcad0c0dd0491 + 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: '{"created_at":"2024-09-23T06:29:34.151Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10ace013dcad0c0dd0491","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:34.151Z","user_id":"auth0|66f10ace013dcad0c0dd0491","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 298.004583ms + status: 200 OK + code: 200 + duration: 347.281875ms - id: 92 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10acf763eff518d18802a method: GET response: proto: HTTP/2.0 @@ -3342,33 +3256,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' + body: '{"created_at":"2024-09-23T06:29:35.083Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10acf763eff518d18802a","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:35.084Z","user_id":"auth0|66f10acf763eff518d18802a","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.921541ms + duration: 340.28625ms - id: 93 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: GET response: proto: HTTP/2.0 @@ -3376,35 +3289,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.715209ms + duration: 343.530834ms - id: 94 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: GET response: proto: HTTP/2.0 @@ -3414,33 +3326,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.280166ms + duration: 325.971667ms - id: 95 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3450,33 +3361,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.234417ms + duration: 330.710166ms - id: 96 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3484,35 +3394,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.61025ms + duration: 326.265875ms - id: 97 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -3522,33 +3431,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 315.091292ms + duration: 338.023583ms - id: 98 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10ace013dcad0c0dd0491 method: GET response: proto: HTTP/2.0 @@ -3556,35 +3464,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-09-23T06:29:34.151Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10ace013dcad0c0dd0491","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:34.151Z","user_id":"auth0|66f10ace013dcad0c0dd0491","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.608833ms + duration: 338.132292ms - id: 99 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10acf763eff518d18802a method: GET response: proto: HTTP/2.0 @@ -3594,33 +3501,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' + body: '{"created_at":"2024-09-23T06:29:35.083Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10acf763eff518d18802a","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:35.084Z","user_id":"auth0|66f10acf763eff518d18802a","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 326.264625ms + duration: 362.121125ms - id: 100 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: GET response: proto: HTTP/2.0 @@ -3628,35 +3534,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.878334ms + duration: 333.061042ms - id: 101 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3664,71 +3569,70 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 385.354625ms + duration: 334.035625ms - id: 102 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 80 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"members":["auth0|66f10ace013dcad0c0dd0491","auth0|66f10acf763eff518d18802a"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members + method: POST 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: 354.431209ms + status: 204 No Content + code: 204 + duration: 373.4965ms - id: 103 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3738,33 +3642,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' + body: '{"members":[{"user_id":"auth0|66f10acf763eff518d18802a"},{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.61475ms + duration: 359.527875ms - id: 104 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3780,27 +3683,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 337.474167ms + duration: 340.388208ms - id: 105 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10ace013dcad0c0dd0491 method: GET response: proto: HTTP/2.0 @@ -3810,33 +3712,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' + body: '{"created_at":"2024-09-23T06:29:34.151Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10ace013dcad0c0dd0491","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:34.151Z","user_id":"auth0|66f10ace013dcad0c0dd0491","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 355.319083ms + duration: 345.776375ms - id: 106 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10acf763eff518d18802a method: GET response: proto: HTTP/2.0 @@ -3846,33 +3747,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"created_at":"2024-09-23T06:29:35.083Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10acf763eff518d18802a","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:35.084Z","user_id":"auth0|66f10acf763eff518d18802a","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 355.170333ms + duration: 342.577917ms - id: 107 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: GET response: proto: HTTP/2.0 @@ -3880,35 +3780,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.766208ms + duration: 377.707958ms - id: 108 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3918,33 +3817,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"members":[{"user_id":"auth0|66f10acf763eff518d18802a"},{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.844042ms + duration: 386.108875ms - id: 109 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3952,35 +3850,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 319.311875ms + duration: 509.936209ms - id: 110 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3988,35 +3885,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|66f10acf763eff518d18802a"},{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.700542ms + duration: 342.010166ms - id: 111 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4024,35 +3920,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 273.35225ms + duration: 331.611625ms - id: 112 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: GET response: proto: HTTP/2.0 @@ -4062,33 +3957,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 325.428458ms + duration: 328.746041ms - id: 113 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4098,33 +3992,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.846ms + duration: 423.278459ms - id: 114 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4134,33 +4027,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' + body: '{"members":[{"user_id":"auth0|66f10acf763eff518d18802a"},{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.60275ms + duration: 359.538417ms - id: 115 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4176,27 +4068,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.238125ms + duration: 353.309292ms - id: 116 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -4206,33 +4097,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.3965ms + duration: 373.177958ms - id: 117 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: GET response: proto: HTTP/2.0 @@ -4240,35 +4130,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.122875ms + duration: 331.412583ms - id: 118 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4278,33 +4167,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"members":[{"user_id":"auth0|66f10acf763eff518d18802a"},{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 470.72425ms + duration: 342.340292ms - id: 119 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4314,33 +4202,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 486.479209ms + duration: 338.539375ms - 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4348,35 +4235,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.870459ms + duration: 341.65425ms - 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4384,35 +4270,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|66f10acf763eff518d18802a"},{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.634166ms + duration: 335.851125ms - id: 122 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4420,35 +4305,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 327.165042ms + duration: 326.294792ms - id: 123 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -4456,35 +4340,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.65325ms + duration: 341.907125ms - id: 124 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10ace013dcad0c0dd0491 method: GET response: proto: HTTP/2.0 @@ -4494,33 +4377,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"created_at":"2024-09-23T06:29:34.151Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10ace013dcad0c0dd0491","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:34.151Z","user_id":"auth0|66f10ace013dcad0c0dd0491","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.423542ms + duration: 383.772708ms - id: 125 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10acf763eff518d18802a method: GET response: proto: HTTP/2.0 @@ -4530,33 +4412,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"created_at":"2024-09-23T06:29:35.083Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10acf763eff518d18802a","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:35.084Z","user_id":"auth0|66f10acf763eff518d18802a","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.812833ms + duration: 376.468667ms - id: 126 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: GET response: proto: HTTP/2.0 @@ -4566,33 +4447,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 314.849875ms + duration: 326.389292ms - id: 127 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4600,35 +4480,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|66f10acf763eff518d18802a"},{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.831958ms + duration: 359.925333ms - id: 128 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4636,35 +4515,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.601541ms + duration: 320.652375ms - id: 129 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4674,33 +4552,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' + body: '{"members":[{"user_id":"auth0|66f10acf763eff518d18802a"},{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.04925ms + duration: 354.180459ms - id: 130 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4708,35 +4585,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 329.01525ms + duration: 336.688042ms - id: 131 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: GET response: proto: HTTP/2.0 @@ -4746,33 +4622,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 332.966125ms + duration: 333.979417ms - id: 132 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4780,35 +4655,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|66f10acf763eff518d18802a"},{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.400167ms + duration: 338.720292ms - id: 133 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4816,35 +4690,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.421208ms + duration: 325.310792ms - id: 134 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4852,35 +4725,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + 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: 311.072666ms + duration: 352.81875ms - id: 135 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4890,33 +4762,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"members":[{"user_id":"auth0|66f10acf763eff518d18802a"},{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 273.873709ms + duration: 457.036833ms - id: 136 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4924,35 +4795,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.097542ms + duration: 429.259916ms - id: 137 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -4962,33 +4832,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.450667ms + duration: 380.26425ms - id: 138 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: GET response: proto: HTTP/2.0 @@ -4996,35 +4865,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.554417ms + duration: 366.93975ms - id: 139 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5034,33 +4902,67 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.010417ms + duration: 378.902541ms - id: 140 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=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|66f10acf763eff518d18802a"},{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 349.514417ms + - id: 141 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5076,8 +4978,533 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.442167ms - - id: 141 + duration: 325.669208ms + - id: 142 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 325.134959ms + - id: 143 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10ace013dcad0c0dd0491 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-09-23T06:29:34.151Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10ace013dcad0c0dd0491","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:34.151Z","user_id":"auth0|66f10ace013dcad0c0dd0491","username":"testaccorganizationmember11"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 346.754875ms + - id: 144 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10acf763eff518d18802a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-09-23T06:29:35.083Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10acf763eff518d18802a","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:29:35.084Z","user_id":"auth0|66f10acf763eff518d18802a","username":"testaccorganizationmember22"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 344.241333ms + - id: 145 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 355.36525ms + - id: 146 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=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|66f10acf763eff518d18802a"},{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 563.381916ms + - id: 147 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 407.308292ms + - id: 148 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=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|66f10acf763eff518d18802a"},{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 401.769084ms + - id: 149 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 409.87875ms + - id: 150 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_kqWAstQju59VaVbD","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 508.081459ms + - id: 151 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=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|66f10acf763eff518d18802a"},{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 508.483916ms + - id: 152 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 338.148458ms + - id: 153 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/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: 365.135416ms + - id: 154 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=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|66f10acf763eff518d18802a"},{"user_id":"auth0|66f10ace013dcad0c0dd0491"}],"next":"MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 338.170667ms + - id: 155 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMDoxNi41OTEwMDBVVEMsYXV0aDB8NjZmMTBhY2Y3NjNlZmY1MThkMTg4MDJh&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 334.364833ms + - 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 338.421417ms + - id: 157 request: proto: HTTP/1.1 proto_major: 1 @@ -5089,14 +5516,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|6654994a3d0a9374995dbe52"]} + {"members":["auth0|66f10acf763eff518d18802a"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members method: DELETE response: proto: HTTP/2.0 @@ -5112,8 +5539,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 290.687042ms - - id: 142 + duration: 347.417209ms + - id: 158 request: proto: HTTP/1.1 proto_major: 1 @@ -5125,14 +5552,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|66549949465f0d3c058a33ba"]} + {"members":["auth0|66f10ace013dcad0c0dd0491"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members method: DELETE response: proto: HTTP/2.0 @@ -5148,8 +5575,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 303.479042ms - - id: 143 + duration: 418.794833ms + - id: 159 request: proto: HTTP/1.1 proto_major: 1 @@ -5161,14 +5588,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|66549949465f0d3c058a33ba","auth0|6654994a3d0a9374995dbe52"]} + {"members":["auth0|66f10ace013dcad0c0dd0491","auth0|66f10acf763eff518d18802a"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD/members method: DELETE response: proto: HTTP/2.0 @@ -5184,8 +5611,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 302.519ms - - id: 144 + duration: 443.558833ms + - id: 160 request: proto: HTTP/1.1 proto_major: 1 @@ -5202,8 +5629,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kqWAstQju59VaVbD method: DELETE response: proto: HTTP/2.0 @@ -5219,8 +5646,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 287.126792ms - - id: 145 + duration: 346.177541ms + - id: 161 request: proto: HTTP/1.1 proto_major: 1 @@ -5237,8 +5664,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10acf763eff518d18802a method: DELETE response: proto: HTTP/2.0 @@ -5254,8 +5681,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 404.878208ms - - id: 146 + duration: 384.634625ms + - id: 162 request: proto: HTTP/1.1 proto_major: 1 @@ -5272,8 +5699,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10ace013dcad0c0dd0491 method: DELETE response: proto: HTTP/2.0 @@ -5289,4 +5716,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 337.511792ms + duration: 410.483583ms diff --git a/test/data/recordings/TestAccOrganizationMemberRole.yaml b/test/data/recordings/TestAccOrganizationMemberRole.yaml index e4d37332f..66e71920e 100644 --- a/test/data/recordings/TestAccOrganizationMemberRole.yaml +++ b/test/data/recordings/TestAccOrganizationMemberRole.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles method: POST response: @@ -30,33 +30,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 339.060334ms + duration: 449.824041ms - id: 1 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_QX5oS0FPDsPIQe1I method: GET response: proto: HTTP/2.0 @@ -66,13 +65,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.125792ms + duration: 379.790292ms - id: 2 request: proto: HTTP/1.1 @@ -91,7 +90,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles method: POST response: @@ -102,33 +101,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 316.842791ms + duration: 371.713334ms - id: 3 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C6pWqx64U1A8hTMe method: GET response: proto: HTTP/2.0 @@ -138,13 +136,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.837708ms + duration: 333.989458ms - id: 4 request: proto: HTTP/1.1 @@ -163,7 +161,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users method: POST response: @@ -174,33 +172,32 @@ interactions: trailer: {} content_length: 605 uncompressed: false - body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-09-23T06:28:41.464Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10a99013dcad0c0dd0427","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:28:41.464Z","user_id":"auth0|66f10a99013dcad0c0dd0427","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 456.727292ms + duration: 558.334625ms - id: 5 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10a99013dcad0c0dd0427 method: GET response: proto: HTTP/2.0 @@ -210,13 +207,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-09-23T06:28:41.464Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10a99013dcad0c0dd0427","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:28:41.464Z","user_id":"auth0|66f10a99013dcad0c0dd0427","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.569917ms + duration: 398.197625ms - id: 6 request: proto: HTTP/1.1 @@ -235,7 +232,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations method: POST response: @@ -246,33 +243,32 @@ interactions: trailer: {} content_length: 124 uncompressed: false - body: '{"id":"org_jqEAv3I274ZGVdDD","display_name":"testaccorganizationmemberrole","name":"some-org-testaccorganizationmemberrole"}' + body: '{"id":"org_26JzYaBOvgj73aZO","display_name":"testaccorganizationmemberrole","name":"some-org-testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 308.977583ms + duration: 426.674875ms - id: 7 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO method: GET response: proto: HTTP/2.0 @@ -282,13 +278,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_jqEAv3I274ZGVdDD","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_26JzYaBOvgj73aZO","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.49825ms + duration: 375.161292ms - id: 8 request: proto: HTTP/1.1 @@ -301,14 +297,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|66549950465f0d3c058a33c0"]} + {"members":["auth0|66f10a99013dcad0c0dd0427"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members method: POST response: proto: HTTP/2.0 @@ -324,27 +320,26 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 332.300916ms + duration: 396.027917ms - id: 9 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -354,33 +349,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549950465f0d3c058a33c0"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw"}' + body: '{"members":[{"user_id":"auth0|66f10a99013dcad0c0dd0427"}],"next":"MjAyNC0wOS0yMyAwNjoyODo0My4wNjQwMDBVVEMsYXV0aDB8NjZmMTBhOTkwMTNkY2FkMGMwZGQwNDI3"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.361667ms + duration: 442.412667ms - id: 10 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyODo0My4wNjQwMDBVVEMsYXV0aDB8NjZmMTBhOTkwMTNkY2FkMGMwZGQwNDI3&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -396,7 +390,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 349.662625ms + duration: 445.502333ms - id: 11 request: proto: HTTP/1.1 @@ -409,14 +403,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_GWm8CJva5enbit3B"]} + {"roles":["rol_QX5oS0FPDsPIQe1I"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles method: POST response: proto: HTTP/2.0 @@ -432,27 +426,26 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 348.286167ms + duration: 380.1835ms - id: 12 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -462,33 +455,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 323.967375ms + duration: 423.379834ms - id: 13 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_QX5oS0FPDsPIQe1I method: GET response: proto: HTTP/2.0 @@ -498,33 +490,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 395.691416ms + duration: 371.952375ms - id: 14 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C6pWqx64U1A8hTMe method: GET response: proto: HTTP/2.0 @@ -534,33 +525,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.367167ms + duration: 335.7145ms - id: 15 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10a99013dcad0c0dd0427 method: GET response: proto: HTTP/2.0 @@ -570,33 +560,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-09-23T06:28:41.464Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10a99013dcad0c0dd0427","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:28:41.464Z","user_id":"auth0|66f10a99013dcad0c0dd0427","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.707167ms + duration: 440.4085ms - id: 16 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO method: GET response: proto: HTTP/2.0 @@ -606,33 +595,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_jqEAv3I274ZGVdDD","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_26JzYaBOvgj73aZO","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.917166ms + duration: 332.731459ms - id: 17 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -642,33 +630,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549950465f0d3c058a33c0"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw"}' + body: '{"members":[{"user_id":"auth0|66f10a99013dcad0c0dd0427"}],"next":"MjAyNC0wOS0yMyAwNjoyODo0My4wNjQwMDBVVEMsYXV0aDB8NjZmMTBhOTkwMTNkY2FkMGMwZGQwNDI3"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.44975ms + duration: 371.052667ms - id: 18 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyODo0My4wNjQwMDBVVEMsYXV0aDB8NjZmMTBhOTkwMTNkY2FkMGMwZGQwNDI3&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -684,27 +671,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.4045ms + duration: 340.426084ms - 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -714,33 +700,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.035709ms + duration: 369.512917ms - id: 20 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_QX5oS0FPDsPIQe1I method: GET response: proto: HTTP/2.0 @@ -750,33 +735,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.661334ms + duration: 339.361625ms - 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C6pWqx64U1A8hTMe method: GET response: proto: HTTP/2.0 @@ -786,33 +770,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.559542ms + duration: 343.053333ms - id: 22 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10a99013dcad0c0dd0427 method: GET response: proto: HTTP/2.0 @@ -822,33 +805,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-09-23T06:28:41.464Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10a99013dcad0c0dd0427","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:28:41.464Z","user_id":"auth0|66f10a99013dcad0c0dd0427","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.423792ms + duration: 428.898125ms - id: 23 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO method: GET response: proto: HTTP/2.0 @@ -858,33 +840,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_jqEAv3I274ZGVdDD","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_26JzYaBOvgj73aZO","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.817375ms + duration: 398.377417ms - id: 24 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -894,33 +875,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549950465f0d3c058a33c0"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw"}' + body: '{"members":[{"user_id":"auth0|66f10a99013dcad0c0dd0427"}],"next":"MjAyNC0wOS0yMyAwNjoyODo0My4wNjQwMDBVVEMsYXV0aDB8NjZmMTBhOTkwMTNkY2FkMGMwZGQwNDI3"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.293458ms + duration: 344.573417ms - id: 25 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyODo0My4wNjQwMDBVVEMsYXV0aDB8NjZmMTBhOTkwMTNkY2FkMGMwZGQwNDI3&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -936,27 +916,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.915792ms + duration: 334.692834ms - id: 26 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -966,13 +945,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 332.268667ms + duration: 343.125542ms - id: 27 request: proto: HTTP/1.1 @@ -985,14 +964,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_albRPhQIt544srYJ"]} + {"roles":["rol_C6pWqx64U1A8hTMe"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles method: POST response: proto: HTTP/2.0 @@ -1008,27 +987,26 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 310.954209ms + duration: 378.007958ms - id: 28 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1038,33 +1016,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 327.262875ms + duration: 362.66575ms - id: 29 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_QX5oS0FPDsPIQe1I method: GET response: proto: HTTP/2.0 @@ -1074,33 +1051,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.193042ms + duration: 342.171666ms - id: 30 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C6pWqx64U1A8hTMe method: GET response: proto: HTTP/2.0 @@ -1110,33 +1086,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.820083ms + duration: 344.921958ms - id: 31 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10a99013dcad0c0dd0427 method: GET response: proto: HTTP/2.0 @@ -1146,33 +1121,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-09-23T06:28:41.464Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10a99013dcad0c0dd0427","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:28:41.464Z","user_id":"auth0|66f10a99013dcad0c0dd0427","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 312.641834ms + duration: 853.306167ms - id: 32 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO method: GET response: proto: HTTP/2.0 @@ -1182,33 +1156,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_jqEAv3I274ZGVdDD","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_26JzYaBOvgj73aZO","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 392.441417ms + duration: 326.38375ms - id: 33 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1218,33 +1191,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549950465f0d3c058a33c0"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw"}' + body: '{"members":[{"user_id":"auth0|66f10a99013dcad0c0dd0427"}],"next":"MjAyNC0wOS0yMyAwNjoyODo0My4wNjQwMDBVVEMsYXV0aDB8NjZmMTBhOTkwMTNkY2FkMGMwZGQwNDI3"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 289.223542ms + duration: 391.459708ms - id: 34 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyODo0My4wNjQwMDBVVEMsYXV0aDB8NjZmMTBhOTkwMTNkY2FkMGMwZGQwNDI3&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1260,27 +1232,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.731708ms + duration: 356.944459ms - id: 35 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1290,33 +1261,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 343.990958ms + duration: 357.213125ms - id: 36 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1326,33 +1296,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.936542ms + duration: 400.552ms - id: 37 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_QX5oS0FPDsPIQe1I method: GET response: proto: HTTP/2.0 @@ -1362,33 +1331,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 406.04325ms + duration: 450.882209ms - id: 38 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1398,33 +1366,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 409.578958ms + duration: 450.212416ms - id: 39 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1434,33 +1401,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"roles":[{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 420.659584ms + duration: 450.285458ms - id: 40 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C6pWqx64U1A8hTMe method: GET response: proto: HTTP/2.0 @@ -1470,33 +1436,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 337.320959ms + duration: 364.464542ms - id: 41 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10a99013dcad0c0dd0427 method: GET response: proto: HTTP/2.0 @@ -1506,33 +1471,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-09-23T06:28:41.464Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10a99013dcad0c0dd0427","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:28:41.464Z","user_id":"auth0|66f10a99013dcad0c0dd0427","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 325.909458ms + duration: 365.010875ms - id: 42 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO method: GET response: proto: HTTP/2.0 @@ -1542,33 +1506,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_jqEAv3I274ZGVdDD","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_26JzYaBOvgj73aZO","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 331.751541ms + duration: 375.674167ms - id: 43 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1578,33 +1541,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549950465f0d3c058a33c0"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw"}' + body: '{"members":[{"user_id":"auth0|66f10a99013dcad0c0dd0427"}],"next":"MjAyNC0wOS0yMyAwNjoyODo0My4wNjQwMDBVVEMsYXV0aDB8NjZmMTBhOTkwMTNkY2FkMGMwZGQwNDI3"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 350.699084ms + duration: 343.007375ms - id: 44 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyODo0My4wNjQwMDBVVEMsYXV0aDB8NjZmMTBhOTkwMTNkY2FkMGMwZGQwNDI3&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1620,7 +1582,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 355.674208ms + duration: 367.433417ms - id: 45 request: proto: HTTP/1.1 @@ -1633,14 +1595,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_albRPhQIt544srYJ"]} + {"roles":["rol_C6pWqx64U1A8hTMe"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles method: DELETE response: proto: HTTP/2.0 @@ -1656,7 +1618,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 280.724084ms + duration: 339.68675ms - id: 46 request: proto: HTTP/1.1 @@ -1669,14 +1631,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_GWm8CJva5enbit3B"]} + {"roles":["rol_QX5oS0FPDsPIQe1I"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles method: DELETE response: proto: HTTP/2.0 @@ -1692,27 +1654,26 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 309.808958ms + duration: 393.625958ms - id: 47 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_QX5oS0FPDsPIQe1I method: GET response: proto: HTTP/2.0 @@ -1722,33 +1683,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 315.476375ms + duration: 388.3095ms - id: 48 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C6pWqx64U1A8hTMe method: GET response: proto: HTTP/2.0 @@ -1758,33 +1718,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 357.965375ms + duration: 320.322ms - id: 49 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10a99013dcad0c0dd0427 method: GET response: proto: HTTP/2.0 @@ -1794,33 +1753,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-09-23T06:28:41.464Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10a99013dcad0c0dd0427","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:28:41.464Z","user_id":"auth0|66f10a99013dcad0c0dd0427","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 314.3465ms + duration: 340.199125ms - id: 50 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO method: GET response: proto: HTTP/2.0 @@ -1830,33 +1788,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_jqEAv3I274ZGVdDD","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_26JzYaBOvgj73aZO","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.336084ms + duration: 338.824208ms - id: 51 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1866,33 +1823,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549950465f0d3c058a33c0"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw"}' + body: '{"members":[{"user_id":"auth0|66f10a99013dcad0c0dd0427"}],"next":"MjAyNC0wOS0yMyAwNjoyODo0My4wNjQwMDBVVEMsYXV0aDB8NjZmMTBhOTkwMTNkY2FkMGMwZGQwNDI3"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.951708ms + duration: 392.636708ms - id: 52 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyODo0My4wNjQwMDBVVEMsYXV0aDB8NjZmMTBhOTkwMTNkY2FkMGMwZGQwNDI3&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1908,27 +1864,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.0415ms + duration: 407.371208ms - id: 53 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1944,27 +1899,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.525875ms + duration: 351.890875ms - id: 54 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_QX5oS0FPDsPIQe1I method: GET response: proto: HTTP/2.0 @@ -1974,33 +1928,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.883291ms + duration: 339.726334ms - id: 55 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C6pWqx64U1A8hTMe method: GET response: proto: HTTP/2.0 @@ -2010,33 +1963,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.476959ms + duration: 329.677916ms - id: 56 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10a99013dcad0c0dd0427 method: GET response: proto: HTTP/2.0 @@ -2046,33 +1998,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-09-23T06:28:41.464Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10a99013dcad0c0dd0427","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:28:41.464Z","user_id":"auth0|66f10a99013dcad0c0dd0427","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 352.515625ms + duration: 338.938416ms - id: 57 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO method: GET response: proto: HTTP/2.0 @@ -2082,33 +2033,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_jqEAv3I274ZGVdDD","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_26JzYaBOvgj73aZO","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.598334ms + duration: 363.704708ms - id: 58 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2118,33 +2068,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549950465f0d3c058a33c0"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw"}' + body: '{"members":[{"user_id":"auth0|66f10a99013dcad0c0dd0427"}],"next":"MjAyNC0wOS0yMyAwNjoyODo0My4wNjQwMDBVVEMsYXV0aDB8NjZmMTBhOTkwMTNkY2FkMGMwZGQwNDI3"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 314.682042ms + duration: 405.012708ms - id: 59 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyODo0My4wNjQwMDBVVEMsYXV0aDB8NjZmMTBhOTkwMTNkY2FkMGMwZGQwNDI3&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2160,27 +2109,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.551084ms + duration: 331.989375ms - id: 60 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2196,27 +2144,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.098917ms + duration: 347.593208ms - id: 61 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_QX5oS0FPDsPIQe1I method: GET response: proto: HTTP/2.0 @@ -2226,33 +2173,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.114459ms + duration: 553.928083ms - id: 62 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C6pWqx64U1A8hTMe method: GET response: proto: HTTP/2.0 @@ -2262,33 +2208,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 274.611333ms + duration: 412.977292ms - id: 63 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10a99013dcad0c0dd0427 method: GET response: proto: HTTP/2.0 @@ -2298,33 +2243,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-09-23T06:28:41.464Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10a99013dcad0c0dd0427","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:28:41.464Z","user_id":"auth0|66f10a99013dcad0c0dd0427","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.294625ms + duration: 399.7175ms - id: 64 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO method: GET response: proto: HTTP/2.0 @@ -2334,33 +2278,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_jqEAv3I274ZGVdDD","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_26JzYaBOvgj73aZO","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 323.858417ms + duration: 708.562708ms - id: 65 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2370,33 +2313,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549950465f0d3c058a33c0"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw"}' + body: '{"members":[{"user_id":"auth0|66f10a99013dcad0c0dd0427"}],"next":"MjAyNC0wOS0yMyAwNjoyODo0My4wNjQwMDBVVEMsYXV0aDB8NjZmMTBhOTkwMTNkY2FkMGMwZGQwNDI3"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 326.989042ms + duration: 402.715542ms - id: 66 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyODo0My4wNjQwMDBVVEMsYXV0aDB8NjZmMTBhOTkwMTNkY2FkMGMwZGQwNDI3&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2412,27 +2354,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.860459ms + duration: 409.36025ms - id: 67 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2448,27 +2389,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 335.175583ms + duration: 509.543ms - id: 68 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_QX5oS0FPDsPIQe1I method: GET response: proto: HTTP/2.0 @@ -2478,33 +2418,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 334.192542ms + duration: 347.122584ms - id: 69 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C6pWqx64U1A8hTMe method: GET response: proto: HTTP/2.0 @@ -2514,33 +2453,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.16525ms + duration: 346.362042ms - id: 70 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10a99013dcad0c0dd0427 method: GET response: proto: HTTP/2.0 @@ -2550,33 +2488,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-09-23T06:28:41.464Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10a99013dcad0c0dd0427","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:28:41.464Z","user_id":"auth0|66f10a99013dcad0c0dd0427","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.755792ms + duration: 395.796917ms - id: 71 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO method: GET response: proto: HTTP/2.0 @@ -2586,33 +2523,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_jqEAv3I274ZGVdDD","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_26JzYaBOvgj73aZO","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.783333ms + duration: 808.55875ms - id: 72 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2622,33 +2558,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549950465f0d3c058a33c0"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw"}' + body: '{"members":[{"user_id":"auth0|66f10a99013dcad0c0dd0427"}],"next":"MjAyNC0wOS0yMyAwNjoyODo0My4wNjQwMDBVVEMsYXV0aDB8NjZmMTBhOTkwMTNkY2FkMGMwZGQwNDI3"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 616.497125ms + duration: 404.90625ms - id: 73 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyODo0My4wNjQwMDBVVEMsYXV0aDB8NjZmMTBhOTkwMTNkY2FkMGMwZGQwNDI3&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2664,27 +2599,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 358.3155ms + duration: 346.590042ms - id: 74 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2700,7 +2634,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 383.493ms + duration: 349.258584ms - id: 75 request: proto: HTTP/1.1 @@ -2713,14 +2647,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_albRPhQIt544srYJ","rol_GWm8CJva5enbit3B"]} + {"roles":["rol_QX5oS0FPDsPIQe1I","rol_C6pWqx64U1A8hTMe"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles method: POST response: proto: HTTP/2.0 @@ -2736,27 +2670,26 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 351.603166ms + duration: 379.689417ms - id: 76 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2766,33 +2699,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 338.235917ms + duration: 358.980166ms - id: 77 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_QX5oS0FPDsPIQe1I method: GET response: proto: HTTP/2.0 @@ -2802,33 +2734,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 430.752458ms + duration: 335.672542ms - id: 78 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C6pWqx64U1A8hTMe method: GET response: proto: HTTP/2.0 @@ -2838,33 +2769,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 352.603292ms + duration: 413.5405ms - id: 79 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10a99013dcad0c0dd0427 method: GET response: proto: HTTP/2.0 @@ -2874,33 +2804,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-09-23T06:28:41.464Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10a99013dcad0c0dd0427","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:28:41.464Z","user_id":"auth0|66f10a99013dcad0c0dd0427","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.296167ms + duration: 337.610708ms - id: 80 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO method: GET response: proto: HTTP/2.0 @@ -2910,33 +2839,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_jqEAv3I274ZGVdDD","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_26JzYaBOvgj73aZO","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.733167ms + duration: 377.30275ms - id: 81 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2946,33 +2874,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549950465f0d3c058a33c0"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw"}' + body: '{"members":[{"user_id":"auth0|66f10a99013dcad0c0dd0427"}],"next":"MjAyNC0wOS0yMyAwNjoyODo0My4wNjQwMDBVVEMsYXV0aDB8NjZmMTBhOTkwMTNkY2FkMGMwZGQwNDI3"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 312.760208ms + duration: 402.639ms - id: 82 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyODo0My4wNjQwMDBVVEMsYXV0aDB8NjZmMTBhOTkwMTNkY2FkMGMwZGQwNDI3&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2988,27 +2915,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.857542ms + duration: 336.52525ms - id: 83 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3018,33 +2944,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.067292ms + duration: 373.615625ms - id: 84 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3054,33 +2979,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 352.972958ms + duration: 354.524625ms - 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3090,33 +3014,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 314.790708ms + duration: 407.585167ms - 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_QX5oS0FPDsPIQe1I method: GET response: proto: HTTP/2.0 @@ -3126,33 +3049,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 606.064875ms + duration: 339.20425ms - id: 87 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C6pWqx64U1A8hTMe method: GET response: proto: HTTP/2.0 @@ -3162,33 +3084,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.155584ms + duration: 340.499292ms - id: 88 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10a99013dcad0c0dd0427 method: GET response: proto: HTTP/2.0 @@ -3198,33 +3119,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-09-23T06:28:41.464Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10a99013dcad0c0dd0427","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:28:41.464Z","user_id":"auth0|66f10a99013dcad0c0dd0427","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 412.91225ms + duration: 345.156042ms - id: 89 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO method: GET response: proto: HTTP/2.0 @@ -3234,33 +3154,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_jqEAv3I274ZGVdDD","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_26JzYaBOvgj73aZO","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.622542ms + duration: 357.528625ms - id: 90 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3270,33 +3189,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549950465f0d3c058a33c0"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw"}' + body: '{"members":[{"user_id":"auth0|66f10a99013dcad0c0dd0427"}],"next":"MjAyNC0wOS0yMyAwNjoyODo0My4wNjQwMDBVVEMsYXV0aDB8NjZmMTBhOTkwMTNkY2FkMGMwZGQwNDI3"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 319.059083ms + duration: 451.289959ms - id: 91 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyODo0My4wNjQwMDBVVEMsYXV0aDB8NjZmMTBhOTkwMTNkY2FkMGMwZGQwNDI3&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3312,27 +3230,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.714416ms + duration: 410.372209ms - id: 92 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3342,33 +3259,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.965042ms + duration: 342.525583ms - id: 93 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3378,33 +3294,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 316.04525ms + duration: 360.939958ms - id: 94 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3414,33 +3329,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.542166ms + duration: 406.31875ms - id: 95 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_QX5oS0FPDsPIQe1I method: GET response: proto: HTTP/2.0 @@ -3450,33 +3364,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.196708ms + duration: 401.2565ms - id: 96 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C6pWqx64U1A8hTMe method: GET response: proto: HTTP/2.0 @@ -3486,33 +3399,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.152417ms + duration: 403.00125ms - id: 97 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10a99013dcad0c0dd0427 method: GET response: proto: HTTP/2.0 @@ -3522,33 +3434,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-09-23T06:28:41.464Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10a99013dcad0c0dd0427","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:28:41.464Z","user_id":"auth0|66f10a99013dcad0c0dd0427","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 467.094416ms + duration: 405.816833ms - id: 98 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO method: GET response: proto: HTTP/2.0 @@ -3558,33 +3469,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_jqEAv3I274ZGVdDD","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_26JzYaBOvgj73aZO","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 468.591959ms + duration: 321.853208ms - id: 99 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3594,33 +3504,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549950465f0d3c058a33c0"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw"}' + body: '{"members":[{"user_id":"auth0|66f10a99013dcad0c0dd0427"}],"next":"MjAyNC0wOS0yMyAwNjoyODo0My4wNjQwMDBVVEMsYXV0aDB8NjZmMTBhOTkwMTNkY2FkMGMwZGQwNDI3"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.871792ms + duration: 334.903958ms - id: 100 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjoyODo0My4wNjQwMDBVVEMsYXV0aDB8NjZmMTBhOTkwMTNkY2FkMGMwZGQwNDI3&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3636,27 +3545,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.008625ms + duration: 336.127958ms - id: 101 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3666,33 +3574,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.188583ms + duration: 348.268959ms - id: 102 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3702,33 +3609,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.950334ms + duration: 345.15625ms - id: 103 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3738,13 +3644,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_QX5oS0FPDsPIQe1I","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_C6pWqx64U1A8hTMe","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 316.697958ms + duration: 353.442542ms - id: 104 request: proto: HTTP/1.1 @@ -3757,14 +3663,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_albRPhQIt544srYJ"]} + {"roles":["rol_C6pWqx64U1A8hTMe"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles method: DELETE response: proto: HTTP/2.0 @@ -3780,7 +3686,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 285.6055ms + duration: 350.09975ms - id: 105 request: proto: HTTP/1.1 @@ -3793,14 +3699,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_GWm8CJva5enbit3B"]} + {"roles":["rol_QX5oS0FPDsPIQe1I"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles method: DELETE response: proto: HTTP/2.0 @@ -3816,7 +3722,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 295.95125ms + duration: 553.725417ms - id: 106 request: proto: HTTP/1.1 @@ -3829,14 +3735,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_albRPhQIt544srYJ","rol_GWm8CJva5enbit3B"]} + {"roles":["rol_QX5oS0FPDsPIQe1I","rol_C6pWqx64U1A8hTMe"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members/auth0%7C66f10a99013dcad0c0dd0427/roles method: DELETE response: proto: HTTP/2.0 @@ -3852,7 +3758,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 409.987958ms + duration: 339.1925ms - id: 107 request: proto: HTTP/1.1 @@ -3865,14 +3771,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|66549950465f0d3c058a33c0"]} + {"members":["auth0|66f10a99013dcad0c0dd0427"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO/members method: DELETE response: proto: HTTP/2.0 @@ -3888,7 +3794,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 319.516542ms + duration: 359.169541ms - id: 108 request: proto: HTTP/1.1 @@ -3906,8 +3812,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_26JzYaBOvgj73aZO method: DELETE response: proto: HTTP/2.0 @@ -3923,7 +3829,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 307.463083ms + duration: 401.814209ms - id: 109 request: proto: HTTP/1.1 @@ -3941,8 +3847,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10a99013dcad0c0dd0427 method: DELETE response: proto: HTTP/2.0 @@ -3958,7 +3864,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 470.380459ms + duration: 425.690667ms - id: 110 request: proto: HTTP/1.1 @@ -3977,8 +3883,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C6pWqx64U1A8hTMe method: DELETE response: proto: HTTP/2.0 @@ -3994,7 +3900,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 345.341458ms + duration: 371.942334ms - id: 111 request: proto: HTTP/1.1 @@ -4013,8 +3919,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_QX5oS0FPDsPIQe1I method: DELETE response: proto: HTTP/2.0 @@ -4030,4 +3936,4 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 344.755125ms + duration: 399.81525ms diff --git a/test/data/recordings/TestAccOrganizationMemberRoles.yaml b/test/data/recordings/TestAccOrganizationMemberRoles.yaml index 534fcbb8e..d1b3ca674 100644 --- a/test/data/recordings/TestAccOrganizationMemberRoles.yaml +++ b/test/data/recordings/TestAccOrganizationMemberRoles.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles method: POST response: @@ -30,33 +30,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.99375ms + duration: 377.995333ms - id: 1 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_oUfMXDdoYaWvVgFO method: GET response: proto: HTTP/2.0 @@ -66,13 +65,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.776625ms + duration: 408.187459ms - id: 2 request: proto: HTTP/1.1 @@ -91,7 +90,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles method: POST response: @@ -102,33 +101,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 329.104792ms + duration: 380.136375ms - id: 3 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_gB5BsY24YBNrpAmJ method: GET response: proto: HTTP/2.0 @@ -138,13 +136,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.663709ms + duration: 338.406417ms - id: 4 request: proto: HTTP/1.1 @@ -163,7 +161,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users method: POST response: @@ -174,33 +172,32 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-09-23T06:42:11.661Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10dc3a34744a5325baea3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:42:11.661Z","user_id":"auth0|66f10dc3a34744a5325baea3","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 445.170542ms + duration: 570.195791ms - id: 5 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10dc3a34744a5325baea3 method: GET response: proto: HTTP/2.0 @@ -210,13 +207,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-09-23T06:42:11.661Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10dc3a34744a5325baea3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:42:11.661Z","user_id":"auth0|66f10dc3a34744a5325baea3","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 319.121583ms + duration: 387.723167ms - id: 6 request: proto: HTTP/1.1 @@ -235,7 +232,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations method: POST response: @@ -246,33 +243,32 @@ interactions: trailer: {} content_length: 126 uncompressed: false - body: '{"id":"org_Av4ysp7eBTCrWjZY","display_name":"testaccorganizationmemberroles","name":"some-org-testaccorganizationmemberroles"}' + body: '{"id":"org_MKhVoDWQ2QICazmB","display_name":"testaccorganizationmemberroles","name":"some-org-testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 315.156ms + duration: 418.73975ms - id: 7 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB method: GET response: proto: HTTP/2.0 @@ -282,13 +278,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Av4ysp7eBTCrWjZY","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_MKhVoDWQ2QICazmB","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.634792ms + duration: 385.40075ms - id: 8 request: proto: HTTP/1.1 @@ -301,14 +297,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|66549b753a478dce1bb587a9"]} + {"members":["auth0|66f10dc3a34744a5325baea3"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members method: POST response: proto: HTTP/2.0 @@ -324,27 +320,26 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 321.004208ms + duration: 431.960625ms - id: 9 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -354,33 +349,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549b753a478dce1bb587a9"}],"next":"MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5"}' + body: '{"members":[{"user_id":"auth0|66f10dc3a34744a5325baea3"}],"next":"MjAyNC0wOS0yMyAwNjo0MjoxMy4zNDcwMDBVVEMsYXV0aDB8NjZmMTBkYzNhMzQ3NDRhNTMyNWJhZWEz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 331.470458ms + duration: 399.944875ms - id: 10 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjo0MjoxMy4zNDcwMDBVVEMsYXV0aDB8NjZmMTBkYzNhMzQ3NDRhNTMyNWJhZWEz&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -396,7 +390,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.727291ms + duration: 408.082292ms - id: 11 request: proto: HTTP/1.1 @@ -409,14 +403,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_5IRGu9hQhsfJiRMh"]} + {"roles":["rol_oUfMXDdoYaWvVgFO"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles method: POST response: proto: HTTP/2.0 @@ -432,27 +426,26 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 319.44825ms + duration: 413.064792ms - id: 12 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -462,33 +455,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.853208ms + duration: 598.618333ms - id: 13 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_oUfMXDdoYaWvVgFO method: GET response: proto: HTTP/2.0 @@ -498,33 +490,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 337.199041ms + duration: 369.510542ms - id: 14 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_gB5BsY24YBNrpAmJ method: GET response: proto: HTTP/2.0 @@ -534,33 +525,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.807041ms + duration: 390.142959ms - id: 15 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10dc3a34744a5325baea3 method: GET response: proto: HTTP/2.0 @@ -570,33 +560,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-09-23T06:42:11.661Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10dc3a34744a5325baea3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:42:11.661Z","user_id":"auth0|66f10dc3a34744a5325baea3","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 377.106167ms + duration: 382.158916ms - id: 16 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB method: GET response: proto: HTTP/2.0 @@ -606,33 +595,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Av4ysp7eBTCrWjZY","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_MKhVoDWQ2QICazmB","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 345.85375ms + duration: 374.283208ms - id: 17 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -642,33 +630,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549b753a478dce1bb587a9"}],"next":"MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5"}' + body: '{"members":[{"user_id":"auth0|66f10dc3a34744a5325baea3"}],"next":"MjAyNC0wOS0yMyAwNjo0MjoxMy4zNDcwMDBVVEMsYXV0aDB8NjZmMTBkYzNhMzQ3NDRhNTMyNWJhZWEz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.513375ms + duration: 359.886666ms - id: 18 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjo0MjoxMy4zNDcwMDBVVEMsYXV0aDB8NjZmMTBkYzNhMzQ3NDRhNTMyNWJhZWEz&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -684,27 +671,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 318.358709ms + duration: 452.606208ms - 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -714,33 +700,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 350.973125ms + duration: 361.767459ms - id: 20 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_oUfMXDdoYaWvVgFO method: GET response: proto: HTTP/2.0 @@ -750,33 +735,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 426.411834ms + duration: 336.395542ms - 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_gB5BsY24YBNrpAmJ method: GET response: proto: HTTP/2.0 @@ -786,33 +770,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 269.991917ms + duration: 440.479875ms - id: 22 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10dc3a34744a5325baea3 method: GET response: proto: HTTP/2.0 @@ -822,33 +805,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-09-23T06:42:11.661Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10dc3a34744a5325baea3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:42:11.661Z","user_id":"auth0|66f10dc3a34744a5325baea3","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 316.085917ms + duration: 398.169458ms - id: 23 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB method: GET response: proto: HTTP/2.0 @@ -858,33 +840,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Av4ysp7eBTCrWjZY","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_MKhVoDWQ2QICazmB","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.456208ms + duration: 401.08225ms - id: 24 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -894,33 +875,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549b753a478dce1bb587a9"}],"next":"MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5"}' + body: '{"members":[{"user_id":"auth0|66f10dc3a34744a5325baea3"}],"next":"MjAyNC0wOS0yMyAwNjo0MjoxMy4zNDcwMDBVVEMsYXV0aDB8NjZmMTBkYzNhMzQ3NDRhNTMyNWJhZWEz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.357834ms + duration: 402.975833ms - id: 25 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjo0MjoxMy4zNDcwMDBVVEMsYXV0aDB8NjZmMTBkYzNhMzQ3NDRhNTMyNWJhZWEz&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -936,27 +916,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.195083ms + duration: 408.56925ms - id: 26 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -966,13 +945,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 344.495125ms + duration: 406.259292ms - id: 27 request: proto: HTTP/1.1 @@ -985,14 +964,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_7NH4y009gMs7Mjrk"]} + {"roles":["rol_gB5BsY24YBNrpAmJ"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles method: POST response: proto: HTTP/2.0 @@ -1008,27 +987,26 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 312.709291ms + duration: 362.329584ms - id: 28 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1038,33 +1016,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.601709ms + duration: 409.82825ms - id: 29 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_oUfMXDdoYaWvVgFO method: GET response: proto: HTTP/2.0 @@ -1074,33 +1051,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 274.261458ms + duration: 357.685833ms - id: 30 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_gB5BsY24YBNrpAmJ method: GET response: proto: HTTP/2.0 @@ -1110,33 +1086,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.139416ms + duration: 336.5315ms - id: 31 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10dc3a34744a5325baea3 method: GET response: proto: HTTP/2.0 @@ -1146,33 +1121,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-09-23T06:42:11.661Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10dc3a34744a5325baea3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:42:11.661Z","user_id":"auth0|66f10dc3a34744a5325baea3","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.150417ms + duration: 333.923209ms - id: 32 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB method: GET response: proto: HTTP/2.0 @@ -1182,33 +1156,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Av4ysp7eBTCrWjZY","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_MKhVoDWQ2QICazmB","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.677833ms + duration: 400.03175ms - id: 33 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1218,33 +1191,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549b753a478dce1bb587a9"}],"next":"MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5"}' + body: '{"members":[{"user_id":"auth0|66f10dc3a34744a5325baea3"}],"next":"MjAyNC0wOS0yMyAwNjo0MjoxMy4zNDcwMDBVVEMsYXV0aDB8NjZmMTBkYzNhMzQ3NDRhNTMyNWJhZWEz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 323.111417ms + duration: 403.838917ms - id: 34 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjo0MjoxMy4zNDcwMDBVVEMsYXV0aDB8NjZmMTBkYzNhMzQ3NDRhNTMyNWJhZWEz&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1260,27 +1232,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.998792ms + duration: 325.149834ms - id: 35 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1290,33 +1261,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 356.067917ms + duration: 383.000375ms - id: 36 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_oUfMXDdoYaWvVgFO method: GET response: proto: HTTP/2.0 @@ -1326,33 +1296,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.191208ms + duration: 602.208083ms - id: 37 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_gB5BsY24YBNrpAmJ method: GET response: proto: HTTP/2.0 @@ -1362,33 +1331,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.322375ms + duration: 591.1155ms - id: 38 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10dc3a34744a5325baea3 method: GET response: proto: HTTP/2.0 @@ -1398,33 +1366,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-09-23T06:42:11.661Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10dc3a34744a5325baea3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:42:11.661Z","user_id":"auth0|66f10dc3a34744a5325baea3","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.636958ms + duration: 334.07025ms - id: 39 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB method: GET response: proto: HTTP/2.0 @@ -1434,33 +1401,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Av4ysp7eBTCrWjZY","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_MKhVoDWQ2QICazmB","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 375.061125ms + duration: 330.1685ms - id: 40 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1470,33 +1436,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549b753a478dce1bb587a9"}],"next":"MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5"}' + body: '{"members":[{"user_id":"auth0|66f10dc3a34744a5325baea3"}],"next":"MjAyNC0wOS0yMyAwNjo0MjoxMy4zNDcwMDBVVEMsYXV0aDB8NjZmMTBkYzNhMzQ3NDRhNTMyNWJhZWEz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 403.074875ms + duration: 343.72925ms - id: 41 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjo0MjoxMy4zNDcwMDBVVEMsYXV0aDB8NjZmMTBkYzNhMzQ3NDRhNTMyNWJhZWEz&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1512,27 +1477,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.982625ms + duration: 336.822834ms - id: 42 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1542,13 +1506,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 389.516042ms + duration: 370.145584ms - id: 43 request: proto: HTTP/1.1 @@ -1561,14 +1525,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_5IRGu9hQhsfJiRMh"]} + {"roles":["rol_oUfMXDdoYaWvVgFO"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles method: DELETE response: proto: HTTP/2.0 @@ -1584,27 +1548,26 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 329.562542ms + duration: 385.830625ms - id: 44 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1614,33 +1577,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 381.0065ms + duration: 361.970542ms - id: 45 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_oUfMXDdoYaWvVgFO method: GET response: proto: HTTP/2.0 @@ -1650,33 +1612,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.474584ms + duration: 329.168084ms - id: 46 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_gB5BsY24YBNrpAmJ method: GET response: proto: HTTP/2.0 @@ -1686,33 +1647,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 317.663917ms + duration: 324.554417ms - id: 47 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10dc3a34744a5325baea3 method: GET response: proto: HTTP/2.0 @@ -1722,33 +1682,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-09-23T06:42:11.661Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10dc3a34744a5325baea3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:42:11.661Z","user_id":"auth0|66f10dc3a34744a5325baea3","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.310333ms + duration: 332.288ms - id: 48 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB method: GET response: proto: HTTP/2.0 @@ -1758,33 +1717,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Av4ysp7eBTCrWjZY","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_MKhVoDWQ2QICazmB","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.649583ms + duration: 351.214208ms - id: 49 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1794,33 +1752,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549b753a478dce1bb587a9"}],"next":"MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5"}' + body: '{"members":[{"user_id":"auth0|66f10dc3a34744a5325baea3"}],"next":"MjAyNC0wOS0yMyAwNjo0MjoxMy4zNDcwMDBVVEMsYXV0aDB8NjZmMTBkYzNhMzQ3NDRhNTMyNWJhZWEz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.654458ms + duration: 357.714958ms - id: 50 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjo0MjoxMy4zNDcwMDBVVEMsYXV0aDB8NjZmMTBkYzNhMzQ3NDRhNTMyNWJhZWEz&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1836,27 +1793,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 343.0195ms + duration: 339.290458ms - id: 51 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1866,33 +1822,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 352.508458ms + duration: 341.684666ms - id: 52 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_oUfMXDdoYaWvVgFO method: GET response: proto: HTTP/2.0 @@ -1902,33 +1857,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 334.044833ms + duration: 327.755167ms - id: 53 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_gB5BsY24YBNrpAmJ method: GET response: proto: HTTP/2.0 @@ -1938,33 +1892,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 342.008375ms + duration: 318.868291ms - id: 54 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10dc3a34744a5325baea3 method: GET response: proto: HTTP/2.0 @@ -1974,33 +1927,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-09-23T06:42:11.661Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10dc3a34744a5325baea3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:42:11.661Z","user_id":"auth0|66f10dc3a34744a5325baea3","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 346.732208ms + duration: 349.498791ms - id: 55 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB method: GET response: proto: HTTP/2.0 @@ -2010,33 +1962,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Av4ysp7eBTCrWjZY","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_MKhVoDWQ2QICazmB","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 272.701625ms + duration: 334.30925ms - id: 56 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2046,33 +1997,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549b753a478dce1bb587a9"}],"next":"MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5"}' + body: '{"members":[{"user_id":"auth0|66f10dc3a34744a5325baea3"}],"next":"MjAyNC0wOS0yMyAwNjo0MjoxMy4zNDcwMDBVVEMsYXV0aDB8NjZmMTBkYzNhMzQ3NDRhNTMyNWJhZWEz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 466.30775ms + duration: 382.524208ms - id: 57 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjo0MjoxMy4zNDcwMDBVVEMsYXV0aDB8NjZmMTBkYzNhMzQ3NDRhNTMyNWJhZWEz&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2088,27 +2038,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.805208ms + duration: 605.5215ms - id: 58 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2118,13 +2067,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.184167ms + duration: 358.516709ms - id: 59 request: proto: HTTP/1.1 @@ -2137,14 +2086,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_7NH4y009gMs7Mjrk"]} + {"roles":["rol_gB5BsY24YBNrpAmJ"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles method: DELETE response: proto: HTTP/2.0 @@ -2160,27 +2109,26 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 290.224792ms + duration: 374.350792ms - id: 60 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2196,27 +2144,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 325.35375ms + duration: 343.125209ms - id: 61 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_oUfMXDdoYaWvVgFO method: GET response: proto: HTTP/2.0 @@ -2226,33 +2173,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.308333ms + duration: 343.259417ms - id: 62 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_gB5BsY24YBNrpAmJ method: GET response: proto: HTTP/2.0 @@ -2262,33 +2208,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.900417ms + duration: 338.257709ms - id: 63 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10dc3a34744a5325baea3 method: GET response: proto: HTTP/2.0 @@ -2298,33 +2243,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-09-23T06:42:11.661Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10dc3a34744a5325baea3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:42:11.661Z","user_id":"auth0|66f10dc3a34744a5325baea3","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 649.85975ms + duration: 341.189375ms - id: 64 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB method: GET response: proto: HTTP/2.0 @@ -2334,33 +2278,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Av4ysp7eBTCrWjZY","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_MKhVoDWQ2QICazmB","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.335083ms + duration: 330.43675ms - id: 65 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2370,33 +2313,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549b753a478dce1bb587a9"}],"next":"MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5"}' + body: '{"members":[{"user_id":"auth0|66f10dc3a34744a5325baea3"}],"next":"MjAyNC0wOS0yMyAwNjo0MjoxMy4zNDcwMDBVVEMsYXV0aDB8NjZmMTBkYzNhMzQ3NDRhNTMyNWJhZWEz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.1745ms + duration: 336.325625ms - id: 66 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjo0MjoxMy4zNDcwMDBVVEMsYXV0aDB8NjZmMTBkYzNhMzQ3NDRhNTMyNWJhZWEz&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2412,27 +2354,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.112834ms + duration: 333.6085ms - id: 67 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2448,27 +2389,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 315.472917ms + duration: 413.770834ms - id: 68 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_oUfMXDdoYaWvVgFO method: GET response: proto: HTTP/2.0 @@ -2478,33 +2418,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.365ms + duration: 349.160292ms - id: 69 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2520,27 +2459,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.885333ms + duration: 400.430167ms - id: 70 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_gB5BsY24YBNrpAmJ method: GET response: proto: HTTP/2.0 @@ -2550,33 +2488,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.684083ms + duration: 379.927125ms - id: 71 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10dc3a34744a5325baea3 method: GET response: proto: HTTP/2.0 @@ -2586,33 +2523,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-09-23T06:42:11.661Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10dc3a34744a5325baea3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:42:11.661Z","user_id":"auth0|66f10dc3a34744a5325baea3","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 315.209125ms + duration: 432.438958ms - id: 72 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB method: GET response: proto: HTTP/2.0 @@ -2622,33 +2558,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Av4ysp7eBTCrWjZY","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_MKhVoDWQ2QICazmB","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.3445ms + duration: 325.86875ms - id: 73 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2658,33 +2593,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549b753a478dce1bb587a9"}],"next":"MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5"}' + body: '{"members":[{"user_id":"auth0|66f10dc3a34744a5325baea3"}],"next":"MjAyNC0wOS0yMyAwNjo0MjoxMy4zNDcwMDBVVEMsYXV0aDB8NjZmMTBkYzNhMzQ3NDRhNTMyNWJhZWEz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 330.083792ms + duration: 376.036667ms - id: 74 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjo0MjoxMy4zNDcwMDBVVEMsYXV0aDB8NjZmMTBkYzNhMzQ3NDRhNTMyNWJhZWEz&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2700,7 +2634,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.099209ms + duration: 347.441333ms - id: 75 request: proto: HTTP/1.1 @@ -2713,14 +2647,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_5IRGu9hQhsfJiRMh"]} + {"roles":["rol_oUfMXDdoYaWvVgFO"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles method: POST response: proto: HTTP/2.0 @@ -2736,27 +2670,26 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 326.738417ms + duration: 354.197459ms - id: 76 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2766,13 +2699,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.819708ms + duration: 365.075417ms - id: 77 request: proto: HTTP/1.1 @@ -2785,14 +2718,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_7NH4y009gMs7Mjrk"]} + {"roles":["rol_gB5BsY24YBNrpAmJ"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles method: POST response: proto: HTTP/2.0 @@ -2808,27 +2741,26 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 328.477542ms + duration: 396.643042ms - id: 78 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2838,33 +2770,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 369.832542ms + duration: 362.04875ms - id: 79 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_oUfMXDdoYaWvVgFO method: GET response: proto: HTTP/2.0 @@ -2874,33 +2805,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 341.864542ms + duration: 334.340875ms - id: 80 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_gB5BsY24YBNrpAmJ method: GET response: proto: HTTP/2.0 @@ -2910,33 +2840,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 399.657541ms + duration: 332.725458ms - id: 81 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10dc3a34744a5325baea3 method: GET response: proto: HTTP/2.0 @@ -2946,33 +2875,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-09-23T06:42:11.661Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10dc3a34744a5325baea3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:42:11.661Z","user_id":"auth0|66f10dc3a34744a5325baea3","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 316.085333ms + duration: 331.85425ms - id: 82 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB method: GET response: proto: HTTP/2.0 @@ -2982,33 +2910,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Av4ysp7eBTCrWjZY","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_MKhVoDWQ2QICazmB","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.537167ms + duration: 327.959875ms - id: 83 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3018,33 +2945,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549b753a478dce1bb587a9"}],"next":"MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5"}' + body: '{"members":[{"user_id":"auth0|66f10dc3a34744a5325baea3"}],"next":"MjAyNC0wOS0yMyAwNjo0MjoxMy4zNDcwMDBVVEMsYXV0aDB8NjZmMTBkYzNhMzQ3NDRhNTMyNWJhZWEz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 411.944416ms + duration: 401.699417ms - id: 84 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjo0MjoxMy4zNDcwMDBVVEMsYXV0aDB8NjZmMTBkYzNhMzQ3NDRhNTMyNWJhZWEz&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3060,27 +2986,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 473.083709ms + duration: 410.072916ms - 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3090,33 +3015,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 362.453333ms + duration: 503.900167ms - 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3126,33 +3050,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 470.682ms + duration: 404.254958ms - id: 87 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3162,33 +3085,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 353.693041ms + duration: 355.404792ms - id: 88 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_oUfMXDdoYaWvVgFO method: GET response: proto: HTTP/2.0 @@ -3198,33 +3120,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 417.825291ms + duration: 340.373958ms - id: 89 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_gB5BsY24YBNrpAmJ method: GET response: proto: HTTP/2.0 @@ -3234,33 +3155,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.912292ms + duration: 332.745125ms - id: 90 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10dc3a34744a5325baea3 method: GET response: proto: HTTP/2.0 @@ -3270,33 +3190,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-09-23T06:42:11.661Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10dc3a34744a5325baea3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:42:11.661Z","user_id":"auth0|66f10dc3a34744a5325baea3","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.227042ms + duration: 342.057375ms - id: 91 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB method: GET response: proto: HTTP/2.0 @@ -3306,33 +3225,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Av4ysp7eBTCrWjZY","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_MKhVoDWQ2QICazmB","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.196542ms + duration: 356.048208ms - id: 92 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3342,33 +3260,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549b753a478dce1bb587a9"}],"next":"MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5"}' + body: '{"members":[{"user_id":"auth0|66f10dc3a34744a5325baea3"}],"next":"MjAyNC0wOS0yMyAwNjo0MjoxMy4zNDcwMDBVVEMsYXV0aDB8NjZmMTBkYzNhMzQ3NDRhNTMyNWJhZWEz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.597292ms + duration: 382.549459ms - id: 93 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjo0MjoxMy4zNDcwMDBVVEMsYXV0aDB8NjZmMTBkYzNhMzQ3NDRhNTMyNWJhZWEz&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3384,27 +3301,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 321.098667ms + duration: 429.764375ms - id: 94 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3414,33 +3330,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.25975ms + duration: 405.623917ms - id: 95 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3450,33 +3365,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.180292ms + duration: 400.450209ms - id: 96 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3486,33 +3400,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 319.35625ms + duration: 403.590584ms - id: 97 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_oUfMXDdoYaWvVgFO method: GET response: proto: HTTP/2.0 @@ -3522,33 +3435,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 312.3475ms + duration: 347.489375ms - id: 98 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_gB5BsY24YBNrpAmJ method: GET response: proto: HTTP/2.0 @@ -3558,33 +3470,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.4985ms + duration: 346.659833ms - id: 99 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10dc3a34744a5325baea3 method: GET response: proto: HTTP/2.0 @@ -3594,33 +3505,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-09-23T06:42:11.661Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10dc3a34744a5325baea3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-23T06:42:11.661Z","user_id":"auth0|66f10dc3a34744a5325baea3","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.186708ms + duration: 404.506459ms - id: 100 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB method: GET response: proto: HTTP/2.0 @@ -3630,33 +3540,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_Av4ysp7eBTCrWjZY","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_MKhVoDWQ2QICazmB","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.528375ms + duration: 398.304417ms - id: 101 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3666,33 +3575,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549b753a478dce1bb587a9"}],"next":"MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5"}' + body: '{"members":[{"user_id":"auth0|66f10dc3a34744a5325baea3"}],"next":"MjAyNC0wOS0yMyAwNjo0MjoxMy4zNDcwMDBVVEMsYXV0aDB8NjZmMTBkYzNhMzQ3NDRhNTMyNWJhZWEz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 415.747708ms + duration: 424.597083ms - id: 102 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjo0MjoxMy4zNDcwMDBVVEMsYXV0aDB8NjZmMTBkYzNhMzQ3NDRhNTMyNWJhZWEz&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3708,27 +3616,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.29625ms + duration: 390.088667ms - id: 103 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3738,33 +3645,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.400083ms + duration: 402.712167ms - id: 104 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3774,33 +3680,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.833708ms + duration: 403.069667ms - id: 105 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3810,13 +3715,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_oUfMXDdoYaWvVgFO","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_gB5BsY24YBNrpAmJ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.274ms + duration: 403.727625ms - id: 106 request: proto: HTTP/1.1 @@ -3829,14 +3734,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_5IRGu9hQhsfJiRMh","rol_7NH4y009gMs7Mjrk"]} + {"roles":["rol_oUfMXDdoYaWvVgFO","rol_gB5BsY24YBNrpAmJ"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles method: DELETE response: proto: HTTP/2.0 @@ -3852,7 +3757,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 316.150791ms + duration: 351.177375ms - id: 107 request: proto: HTTP/1.1 @@ -3865,14 +3770,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_7NH4y009gMs7Mjrk"]} + {"roles":["rol_gB5BsY24YBNrpAmJ"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles method: DELETE response: proto: HTTP/2.0 @@ -3888,7 +3793,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 314.96225ms + duration: 359.233ms - id: 108 request: proto: HTTP/1.1 @@ -3901,14 +3806,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_5IRGu9hQhsfJiRMh"]} + {"roles":["rol_oUfMXDdoYaWvVgFO"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members/auth0%7C66f10dc3a34744a5325baea3/roles method: DELETE response: proto: HTTP/2.0 @@ -3924,7 +3829,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 308.19225ms + duration: 337.33775ms - id: 109 request: proto: HTTP/1.1 @@ -3937,14 +3842,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|66549b753a478dce1bb587a9"]} + {"members":["auth0|66f10dc3a34744a5325baea3"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB/members method: DELETE response: proto: HTTP/2.0 @@ -3960,7 +3865,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 286.242209ms + duration: 368.914875ms - id: 110 request: proto: HTTP/1.1 @@ -3978,8 +3883,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_MKhVoDWQ2QICazmB method: DELETE response: proto: HTTP/2.0 @@ -3995,7 +3900,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 291.142917ms + duration: 401.191708ms - id: 111 request: proto: HTTP/1.1 @@ -4013,8 +3918,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10dc3a34744a5325baea3 method: DELETE response: proto: HTTP/2.0 @@ -4030,7 +3935,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 385.200459ms + duration: 365.19425ms - id: 112 request: proto: HTTP/1.1 @@ -4049,8 +3954,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_gB5BsY24YBNrpAmJ method: DELETE response: proto: HTTP/2.0 @@ -4066,7 +3971,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.568708ms + duration: 355.052583ms - id: 113 request: proto: HTTP/1.1 @@ -4085,8 +3990,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_oUfMXDdoYaWvVgFO method: DELETE response: proto: HTTP/2.0 @@ -4102,4 +4007,4 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 317.531666ms + duration: 338.271375ms diff --git a/test/data/recordings/TestAccOrganizationMembers.yaml b/test/data/recordings/TestAccOrganizationMembers.yaml index 757e58bbf..cf4b8f525 100644 --- a/test/data/recordings/TestAccOrganizationMembers.yaml +++ b/test/data/recordings/TestAccOrganizationMembers.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users method: POST response: @@ -30,33 +30,32 @@ interactions: trailer: {} content_length: 598 uncompressed: false - body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","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":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-09-23T06:30:41.821Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b11dfeafe76a08aeed5","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":"2024-09-23T06:30:41.821Z","user_id":"auth0|66f10b11dfeafe76a08aeed5","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 462.31675ms + duration: 518.715625ms - id: 1 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b11dfeafe76a08aeed5 method: GET response: proto: HTTP/2.0 @@ -66,13 +65,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","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":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-09-23T06:30:41.821Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b11dfeafe76a08aeed5","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":"2024-09-23T06:30:41.821Z","user_id":"auth0|66f10b11dfeafe76a08aeed5","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.609584ms + duration: 331.456917ms - id: 2 request: proto: HTTP/1.1 @@ -91,7 +90,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users method: POST response: @@ -102,33 +101,32 @@ interactions: trailer: {} content_length: 598 uncompressed: false - body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","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":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-09-23T06:30:42.669Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b12013dcad0c0dd0516","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":"2024-09-23T06:30:42.669Z","user_id":"auth0|66f10b12013dcad0c0dd0516","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 460.970625ms + duration: 507.67275ms - id: 3 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b12013dcad0c0dd0516 method: GET response: proto: HTTP/2.0 @@ -138,13 +136,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","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":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-09-23T06:30:42.669Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b12013dcad0c0dd0516","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":"2024-09-23T06:30:42.669Z","user_id":"auth0|66f10b12013dcad0c0dd0516","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.520625ms + duration: 380.827209ms - id: 4 request: proto: HTTP/1.1 @@ -163,7 +161,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations method: POST response: @@ -174,33 +172,32 @@ interactions: trailer: {} content_length: 118 uncompressed: false - body: '{"id":"org_2cLRyELw4VaWu2le","display_name":"testaccorganizationmembers","name":"some-org-testaccorganizationmembers"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","display_name":"testaccorganizationmembers","name":"some-org-testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 288.133125ms + duration: 355.64625ms - id: 5 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -210,13 +207,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.658875ms + duration: 338.5305ms - id: 6 request: proto: HTTP/1.1 @@ -229,14 +226,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|66549949cd5cb856cecf5af3"]} + {"members":["auth0|66f10b11dfeafe76a08aeed5"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members method: POST response: proto: HTTP/2.0 @@ -252,27 +249,26 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 292.730375ms + duration: 356.171375ms - id: 7 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -282,33 +278,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NC45MDQwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz"}' + body: '{"members":[{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMDo0NC4xMjMwMDBVVEMsYXV0aDB8NjZmMTBiMTFkZmVhZmU3NmEwOGFlZWQ1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.717375ms + duration: 355.385334ms - id: 8 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NC45MDQwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMDo0NC4xMjMwMDBVVEMsYXV0aDB8NjZmMTBiMTFkZmVhZmU3NmEwOGFlZWQ1&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -324,27 +319,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.044541ms + duration: 333.019542ms - id: 9 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -354,33 +348,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NC45MDQwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz"}' + body: '{"members":[{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMDo0NC4xMjMwMDBVVEMsYXV0aDB8NjZmMTBiMTFkZmVhZmU3NmEwOGFlZWQ1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 368.904125ms + duration: 336.994541ms - id: 10 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NC45MDQwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMDo0NC4xMjMwMDBVVEMsYXV0aDB8NjZmMTBiMTFkZmVhZmU3NmEwOGFlZWQ1&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -396,27 +389,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.948583ms + duration: 348.225792ms - id: 11 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b11dfeafe76a08aeed5 method: GET response: proto: HTTP/2.0 @@ -426,33 +418,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","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":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-09-23T06:30:41.821Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b11dfeafe76a08aeed5","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":"2024-09-23T06:30:41.821Z","user_id":"auth0|66f10b11dfeafe76a08aeed5","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.492625ms + duration: 325.024625ms - id: 12 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -462,33 +453,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NC45MDQwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz"}' + body: '{"members":[{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMDo0NC4xMjMwMDBVVEMsYXV0aDB8NjZmMTBiMTFkZmVhZmU3NmEwOGFlZWQ1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 418.773875ms + duration: 352.844208ms - id: 13 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b12013dcad0c0dd0516 method: GET response: proto: HTTP/2.0 @@ -498,33 +488,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","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":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-09-23T06:30:42.669Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b12013dcad0c0dd0516","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":"2024-09-23T06:30:42.669Z","user_id":"auth0|66f10b12013dcad0c0dd0516","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.402833ms + duration: 346.359542ms - id: 14 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NC45MDQwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -532,35 +521,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.771708ms + duration: 337.301875ms - id: 15 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMDo0NC4xMjMwMDBVVEMsYXV0aDB8NjZmMTBiMTFkZmVhZmU3NmEwOGFlZWQ1&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -568,15 +556,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.239083ms + duration: 1.153631875s - id: 16 request: proto: HTTP/1.1 @@ -589,14 +577,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|66549949cd5cb856cecf5af3"]} + {"members":["auth0|66f10b11dfeafe76a08aeed5"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members method: DELETE response: proto: HTTP/2.0 @@ -612,27 +600,26 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 329.860458ms + duration: 362.1225ms - id: 17 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b11dfeafe76a08aeed5 method: GET response: proto: HTTP/2.0 @@ -642,33 +629,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","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":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-09-23T06:30:41.821Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b11dfeafe76a08aeed5","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":"2024-09-23T06:30:41.821Z","user_id":"auth0|66f10b11dfeafe76a08aeed5","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 511.856459ms + duration: 521.685875ms - id: 18 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b12013dcad0c0dd0516 method: GET response: proto: HTTP/2.0 @@ -678,33 +664,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","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":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-09-23T06:30:42.669Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b12013dcad0c0dd0516","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":"2024-09-23T06:30:42.669Z","user_id":"auth0|66f10b12013dcad0c0dd0516","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 343.243583ms + duration: 335.836625ms - 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -714,33 +699,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 422.7405ms + duration: 335.357833ms - id: 20 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b11dfeafe76a08aeed5 method: GET response: proto: HTTP/2.0 @@ -750,33 +734,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","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":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-09-23T06:30:41.821Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b11dfeafe76a08aeed5","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":"2024-09-23T06:30:41.821Z","user_id":"auth0|66f10b11dfeafe76a08aeed5","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.562209ms + duration: 348.115375ms - 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b12013dcad0c0dd0516 method: GET response: proto: HTTP/2.0 @@ -786,33 +769,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","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":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-09-23T06:30:42.669Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b12013dcad0c0dd0516","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":"2024-09-23T06:30:42.669Z","user_id":"auth0|66f10b12013dcad0c0dd0516","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.674625ms + duration: 398.423083ms - id: 22 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -822,33 +804,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.974125ms + duration: 330.026584ms - id: 23 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -864,27 +845,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.858208ms + duration: 330.4725ms - id: 24 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -900,27 +880,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.531167ms + duration: 337.616458ms - id: 25 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -930,33 +909,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.69275ms + duration: 369.034375ms - id: 26 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -972,27 +950,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.788084ms + duration: 405.709209ms - id: 27 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1008,27 +985,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.204458ms + duration: 328.228917ms - id: 28 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1038,33 +1014,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.64625ms + duration: 390.611958ms - id: 29 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -1074,33 +1049,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.938417ms + duration: 331.376583ms - id: 30 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1108,35 +1082,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + 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: 299.418042ms + duration: 364.361291ms - id: 31 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1144,35 +1117,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","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":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.544334ms + duration: 333.287916ms - id: 32 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1182,33 +1154,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","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":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 274.482792ms + duration: 337.626167ms - id: 33 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b11dfeafe76a08aeed5 method: GET response: proto: HTTP/2.0 @@ -1218,33 +1189,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"created_at":"2024-09-23T06:30:41.821Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b11dfeafe76a08aeed5","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":"2024-09-23T06:30:41.821Z","user_id":"auth0|66f10b11dfeafe76a08aeed5","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 315.367709ms + duration: 323.828625ms - id: 34 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b12013dcad0c0dd0516 method: GET response: proto: HTTP/2.0 @@ -1252,35 +1222,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-09-23T06:30:42.669Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b12013dcad0c0dd0516","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":"2024-09-23T06:30:42.669Z","user_id":"auth0|66f10b12013dcad0c0dd0516","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.033584ms + duration: 332.9015ms - id: 35 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -1290,33 +1259,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.997125ms + duration: 366.781417ms - id: 36 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1324,35 +1292,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.15175ms + duration: 369.463ms - id: 37 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -1360,35 +1327,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.116292ms + duration: 351.810125ms - id: 38 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1398,33 +1364,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","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":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.500583ms + duration: 323.989ms - id: 39 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1432,35 +1397,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","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":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 321.77825ms + duration: 328.402167ms - id: 40 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1470,33 +1434,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.037ms + duration: 343.416959ms - id: 41 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b11dfeafe76a08aeed5 method: GET response: proto: HTTP/2.0 @@ -1504,71 +1467,69 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-09-23T06:30:41.821Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b11dfeafe76a08aeed5","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":"2024-09-23T06:30:41.821Z","user_id":"auth0|66f10b11dfeafe76a08aeed5","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 429.018625ms + duration: 335.890958ms - id: 42 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"members":["auth0|66549949cd5cb856cecf5af3"]} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b12013dcad0c0dd0516 + 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: '{"created_at":"2024-09-23T06:30:42.669Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b12013dcad0c0dd0516","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":"2024-09-23T06:30:42.669Z","user_id":"auth0|66f10b12013dcad0c0dd0516","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 297.339959ms + status: 200 OK + code: 200 + duration: 326.305625ms - id: 43 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -1578,33 +1539,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.214916ms + duration: 330.660542ms - id: 44 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1620,63 +1580,62 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.375042ms + duration: 371.450084ms - id: 45 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|66f10b11dfeafe76a08aeed5"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 333.801542ms + status: 204 No Content + code: 204 + duration: 385.393292ms - id: 46 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1686,33 +1645,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"members":[{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMTowMi42ODgwMDBVVEMsYXV0aDB8NjZmMTBiMTFkZmVhZmU3NmEwOGFlZWQ1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.303917ms + duration: 349.252625ms - id: 47 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMTowMi42ODgwMDBVVEMsYXV0aDB8NjZmMTBiMTFkZmVhZmU3NmEwOGFlZWQ1&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1720,35 +1678,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 317.549625ms + duration: 357.95125ms - id: 48 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -1756,35 +1713,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.828625ms + duration: 338.616834ms - id: 49 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1794,33 +1750,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 328.097375ms + duration: 331.960458ms - id: 50 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1830,33 +1785,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"members":[{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMTowMi42ODgwMDBVVEMsYXV0aDB8NjZmMTBiMTFkZmVhZmU3NmEwOGFlZWQ1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 328.524042ms + duration: 340.848333ms - id: 51 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMTowMi42ODgwMDBVVEMsYXV0aDB8NjZmMTBiMTFkZmVhZmU3NmEwOGFlZWQ1&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1864,35 +1818,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 352.566792ms + duration: 329.100708ms - id: 52 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1900,35 +1853,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 337.751834ms + duration: 329.074084ms - id: 53 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -1938,33 +1890,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","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":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 422.761083ms + duration: 335.150042ms - id: 54 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1974,33 +1925,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","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":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 345.366ms + duration: 349.833208ms - id: 55 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2010,33 +1960,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"members":[{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMTowMi42ODgwMDBVVEMsYXV0aDB8NjZmMTBiMTFkZmVhZmU3NmEwOGFlZWQ1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.049417ms + duration: 349.050292ms - id: 56 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMTowMi42ODgwMDBVVEMsYXV0aDB8NjZmMTBiMTFkZmVhZmU3NmEwOGFlZWQ1&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2044,35 +1993,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.149666ms + duration: 364.135709ms - id: 57 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2080,35 +2028,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.054208ms + duration: 332.246416ms - id: 58 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b11dfeafe76a08aeed5 method: GET response: proto: HTTP/2.0 @@ -2118,33 +2065,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"created_at":"2024-09-23T06:30:41.821Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b11dfeafe76a08aeed5","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":"2024-09-23T06:30:41.821Z","user_id":"auth0|66f10b11dfeafe76a08aeed5","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.967583ms + duration: 336.392875ms - id: 59 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b12013dcad0c0dd0516 method: GET response: proto: HTTP/2.0 @@ -2154,33 +2100,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"created_at":"2024-09-23T06:30:42.669Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b12013dcad0c0dd0516","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":"2024-09-23T06:30:42.669Z","user_id":"auth0|66f10b12013dcad0c0dd0516","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 341.711292ms + duration: 339.561542ms - id: 60 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -2190,33 +2135,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.952667ms + duration: 1.005362667s - id: 61 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2224,35 +2168,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMTowMi42ODgwMDBVVEMsYXV0aDB8NjZmMTBiMTFkZmVhZmU3NmEwOGFlZWQ1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 315.498917ms + duration: 404.831417ms - id: 62 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMTowMi42ODgwMDBVVEMsYXV0aDB8NjZmMTBiMTFkZmVhZmU3NmEwOGFlZWQ1&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2260,35 +2203,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","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":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.177ms + duration: 407.062583ms - id: 63 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -2298,33 +2240,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","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":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.60725ms + duration: 404.015042ms - id: 64 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2334,33 +2275,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.855041ms + duration: 410.671ms - id: 65 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2370,33 +2310,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz"}' + body: '{"members":[{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMTowMi42ODgwMDBVVEMsYXV0aDB8NjZmMTBiMTFkZmVhZmU3NmEwOGFlZWQ1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 432.589167ms + duration: 374.844625ms - id: 66 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMTowMi42ODgwMDBVVEMsYXV0aDB8NjZmMTBiMTFkZmVhZmU3NmEwOGFlZWQ1&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2412,63 +2351,61 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.944916ms + duration: 330.200792ms - id: 67 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"members":["auth0|6654994f3a478dce1bb585d0"]} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 289.251625ms + status: 200 OK + code: 200 + duration: 328.23375ms - id: 68 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b11dfeafe76a08aeed5 method: GET response: proto: HTTP/2.0 @@ -2478,33 +2415,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + body: '{"created_at":"2024-09-23T06:30:41.821Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b11dfeafe76a08aeed5","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":"2024-09-23T06:30:41.821Z","user_id":"auth0|66f10b11dfeafe76a08aeed5","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.484458ms + duration: 331.634334ms - id: 69 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b12013dcad0c0dd0516 method: GET response: proto: HTTP/2.0 @@ -2512,35 +2448,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-09-23T06:30:42.669Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b12013dcad0c0dd0516","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":"2024-09-23T06:30:42.669Z","user_id":"auth0|66f10b12013dcad0c0dd0516","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.70825ms + duration: 336.940625ms - id: 70 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -2550,33 +2485,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 480.42275ms + duration: 337.064458ms - id: 71 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2586,33 +2520,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"members":[{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMTowMi42ODgwMDBVVEMsYXV0aDB8NjZmMTBiMTFkZmVhZmU3NmEwOGFlZWQ1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.403916ms + duration: 346.582833ms - id: 72 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMTowMi42ODgwMDBVVEMsYXV0aDB8NjZmMTBiMTFkZmVhZmU3NmEwOGFlZWQ1&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2620,71 +2553,70 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.461334ms + duration: 344.768916ms - id: 73 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|66f10b12013dcad0c0dd0516"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 + content_length: 0 uncompressed: false - body: '{"members":[]}' + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 307.792ms + status: 204 No Content + code: 204 + duration: 339.542083ms - id: 74 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2694,33 +2626,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"members":[{"user_id":"auth0|66f10b12013dcad0c0dd0516"},{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMToxNS4yMTUwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.7325ms + duration: 351.9485ms - id: 75 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMToxNS4yMTUwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2728,35 +2659,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.9665ms + duration: 361.631ms - id: 76 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -2766,33 +2696,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.121667ms + duration: 350.585833ms - id: 77 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2800,35 +2729,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + 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: 281.805291ms + duration: 357.5395ms - id: 78 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2838,33 +2766,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","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":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' + body: '{"members":[{"user_id":"auth0|66f10b12013dcad0c0dd0516"},{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMToxNS4yMTUwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.437333ms + duration: 336.95075ms - id: 79 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMToxNS4yMTUwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2872,35 +2799,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","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":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 270.764542ms + duration: 336.624458ms - id: 80 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2910,33 +2836,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.754959ms + duration: 341.216917ms - id: 81 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -2946,33 +2871,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.036917ms + duration: 347.43825ms - id: 82 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2980,35 +2904,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + 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: 313.13975ms + duration: 326.48225ms - id: 83 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3018,33 +2941,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"members":[{"user_id":"auth0|66f10b12013dcad0c0dd0516"},{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMToxNS4yMTUwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.431583ms + duration: 349.341459ms - id: 84 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMToxNS4yMTUwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3052,35 +2974,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.31425ms + duration: 875.213084ms - 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -3090,33 +3011,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.429916ms + duration: 394.704167ms - 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b11dfeafe76a08aeed5 method: GET response: proto: HTTP/2.0 @@ -3124,35 +3044,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-09-23T06:30:41.821Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b11dfeafe76a08aeed5","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":"2024-09-23T06:30:41.821Z","user_id":"auth0|66f10b11dfeafe76a08aeed5","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 420.818667ms + duration: 327.371ms - id: 87 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b12013dcad0c0dd0516 method: GET response: proto: HTTP/2.0 @@ -3162,33 +3081,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","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":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-09-23T06:30:42.669Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b12013dcad0c0dd0516","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":"2024-09-23T06:30:42.669Z","user_id":"auth0|66f10b12013dcad0c0dd0516","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.26575ms + duration: 333.931833ms - id: 88 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -3198,33 +3116,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","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":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.7075ms + duration: 400.910583ms - id: 89 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3234,33 +3151,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"members":[{"user_id":"auth0|66f10b12013dcad0c0dd0516"},{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMToxNS4yMTUwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 345.359542ms + duration: 382.791875ms - id: 90 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMToxNS4yMTUwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3268,35 +3184,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 354.493667ms + duration: 382.706125ms - id: 91 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -3304,71 +3219,69 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.2975ms + duration: 343.426042ms - id: 92 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"members":["auth0|66549949cd5cb856cecf5af3"]} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members - method: DELETE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/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: 298.130459ms + status: 200 OK + code: 200 + duration: 337.392458ms - id: 93 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3378,33 +3291,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"members":[{"user_id":"auth0|66f10b12013dcad0c0dd0516"},{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMToxNS4yMTUwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.221458ms + duration: 342.151ms - id: 94 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMToxNS4yMTUwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3412,35 +3324,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.551625ms + duration: 443.274417ms - id: 95 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -3450,33 +3361,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.571333ms + duration: 341.088209ms - id: 96 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b11dfeafe76a08aeed5 method: GET response: proto: HTTP/2.0 @@ -3484,35 +3394,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-09-23T06:30:41.821Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b11dfeafe76a08aeed5","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":"2024-09-23T06:30:41.821Z","user_id":"auth0|66f10b11dfeafe76a08aeed5","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.700084ms + duration: 340.903875ms - id: 97 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b12013dcad0c0dd0516 method: GET response: proto: HTTP/2.0 @@ -3522,33 +3431,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"created_at":"2024-09-23T06:30:42.669Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b12013dcad0c0dd0516","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":"2024-09-23T06:30:42.669Z","user_id":"auth0|66f10b12013dcad0c0dd0516","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.81075ms + duration: 331.917417ms - id: 98 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -3558,33 +3466,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.924125ms + duration: 369.921ms - id: 99 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3594,33 +3501,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + body: '{"members":[{"user_id":"auth0|66f10b12013dcad0c0dd0516"},{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMToxNS4yMTUwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.610209ms + duration: 368.809666ms - id: 100 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMToxNS4yMTUwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3636,63 +3542,62 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 465.170083ms + duration: 322.599584ms - id: 101 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|66f10b11dfeafe76a08aeed5"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","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":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 303.057625ms + status: 204 No Content + code: 204 + duration: 334.65625ms - id: 102 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -3702,33 +3607,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","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":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.820166ms + duration: 330.198792ms - id: 103 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3738,33 +3642,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.177959ms + duration: 342.058666ms - id: 104 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3774,33 +3677,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + body: '{"members":[{"user_id":"auth0|66f10b12013dcad0c0dd0516"}],"next":"MjAyNC0wOS0yMyAwNjozMToxNS4yMTUwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.703458ms + duration: 338.560833ms - id: 105 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMToxNS4yMTUwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3816,27 +3718,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.227292ms + duration: 334.940292ms - id: 106 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -3846,33 +3747,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.591125ms + duration: 337.444334ms - id: 107 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -3882,33 +3782,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.425458ms + duration: 332.619791ms - id: 108 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3918,33 +3817,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.850334ms + duration: 335.43625ms - id: 109 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3952,35 +3850,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|66f10b12013dcad0c0dd0516"}],"next":"MjAyNC0wOS0yMyAwNjozMToxNS4yMTUwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 317.183708ms + duration: 415.882584ms - id: 110 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMToxNS4yMTUwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3988,35 +3885,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","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":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 289.606958ms + duration: 877.965042ms - id: 111 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -4026,33 +3922,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","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":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 350.612042ms + duration: 361.453875ms - id: 112 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b11dfeafe76a08aeed5 method: GET response: proto: HTTP/2.0 @@ -4062,33 +3957,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"created_at":"2024-09-23T06:30:41.821Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b11dfeafe76a08aeed5","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":"2024-09-23T06:30:41.821Z","user_id":"auth0|66f10b11dfeafe76a08aeed5","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.442916ms + duration: 381.615417ms - id: 113 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b12013dcad0c0dd0516 method: GET response: proto: HTTP/2.0 @@ -4098,33 +3992,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + body: '{"created_at":"2024-09-23T06:30:42.669Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b12013dcad0c0dd0516","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":"2024-09-23T06:30:42.669Z","user_id":"auth0|66f10b12013dcad0c0dd0516","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.323167ms + duration: 343.873667ms - id: 114 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -4132,71 +4025,69 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.56275ms + duration: 325.399791ms - id: 115 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"members":["auth0|6654994f3a478dce1bb585d0"]} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members - method: DELETE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=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|66f10b12013dcad0c0dd0516"}],"next":"MjAyNC0wOS0yMyAwNjozMToxNS4yMTUwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 286.618292ms + status: 200 OK + code: 200 + duration: 351.26575ms - id: 116 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMToxNS4yMTUwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4204,35 +4095,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.281166ms + duration: 333.031208ms - id: 117 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -4242,33 +4132,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.359667ms + duration: 331.089166ms - id: 118 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4276,35 +4165,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + 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: 298.571292ms + duration: 341.725834ms - id: 119 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4314,33 +4202,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"members":[{"user_id":"auth0|66f10b12013dcad0c0dd0516"}],"next":"MjAyNC0wOS0yMyAwNjozMToxNS4yMTUwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.688708ms + duration: 343.880958ms - 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMToxNS4yMTUwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4348,35 +4235,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 316.975416ms + duration: 423.487125ms - 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -4384,35 +4270,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.033459ms + duration: 408.152667ms - id: 122 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b11dfeafe76a08aeed5 method: GET response: proto: HTTP/2.0 @@ -4422,33 +4307,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","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":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-09-23T06:30:41.821Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b11dfeafe76a08aeed5","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":"2024-09-23T06:30:41.821Z","user_id":"auth0|66f10b11dfeafe76a08aeed5","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 351.490917ms + duration: 349.084583ms - id: 123 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b12013dcad0c0dd0516 method: GET response: proto: HTTP/2.0 @@ -4458,33 +4342,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","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":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-09-23T06:30:42.669Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b12013dcad0c0dd0516","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":"2024-09-23T06:30:42.669Z","user_id":"auth0|66f10b12013dcad0c0dd0516","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.757167ms + duration: 449.0095ms - id: 124 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -4494,33 +4377,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 324.269375ms + duration: 331.986291ms - id: 125 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4528,35 +4410,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|66f10b12013dcad0c0dd0516"}],"next":"MjAyNC0wOS0yMyAwNjozMToxNS4yMTUwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 349.703375ms + duration: 342.982167ms - id: 126 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMToxNS4yMTUwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4564,71 +4445,70 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 348.978417ms + duration: 349.684875ms - id: 127 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|66f10b12013dcad0c0dd0516"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members + 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: 429.459167ms + status: 204 No Content + code: 204 + duration: 343.344792ms - id: 128 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -4636,35 +4516,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 352.713958ms + duration: 333.836334ms - id: 129 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4674,33 +4553,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","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":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.20525ms + duration: 344.294083ms - id: 130 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4716,27 +4594,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 312.142667ms + duration: 395.58575ms - id: 131 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -4746,33 +4623,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","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":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 270.354708ms + duration: 354.560291ms - id: 132 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -4782,33 +4658,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.568625ms + duration: 350.784667ms - id: 133 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4818,33 +4693,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 371.709542ms + duration: 345.150917ms - id: 134 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4852,35 +4726,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.987959ms + duration: 329.587084ms - id: 135 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -4888,35 +4761,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 361.904125ms + duration: 442.558625ms - id: 136 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b11dfeafe76a08aeed5 method: GET response: proto: HTTP/2.0 @@ -4926,33 +4798,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"created_at":"2024-09-23T06:30:41.821Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b11dfeafe76a08aeed5","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":"2024-09-23T06:30:41.821Z","user_id":"auth0|66f10b11dfeafe76a08aeed5","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.155416ms + duration: 340.047834ms - id: 137 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b12013dcad0c0dd0516 method: GET response: proto: HTTP/2.0 @@ -4962,33 +4833,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"created_at":"2024-09-23T06:30:42.669Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b12013dcad0c0dd0516","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":"2024-09-23T06:30:42.669Z","user_id":"auth0|66f10b12013dcad0c0dd0516","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 354.682875ms + duration: 539.952541ms - id: 138 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -4996,35 +4866,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 416.736541ms + duration: 349.759208ms - id: 139 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5032,35 +4901,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","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":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 327.916625ms + duration: 330.887125ms - id: 140 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -5070,33 +4938,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","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":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 382.198042ms + duration: 325.7105ms - id: 141 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5106,33 +4973,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 398.371042ms + duration: 349.179541ms - id: 142 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5140,35 +5006,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 316.226958ms + duration: 340.597792ms - id: 143 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -5178,33 +5043,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 321.436625ms + duration: 346.918292ms - id: 144 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b11dfeafe76a08aeed5 method: GET response: proto: HTTP/2.0 @@ -5212,35 +5076,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-09-23T06:30:41.821Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b11dfeafe76a08aeed5","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":"2024-09-23T06:30:41.821Z","user_id":"auth0|66f10b11dfeafe76a08aeed5","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 328.860375ms + duration: 331.185334ms - id: 145 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5248,35 +5111,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","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":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.849583ms + duration: 333.949542ms - id: 146 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b12013dcad0c0dd0516 method: GET response: proto: HTTP/2.0 @@ -5286,33 +5148,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","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":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-09-23T06:30:42.669Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b12013dcad0c0dd0516","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":"2024-09-23T06:30:42.669Z","user_id":"auth0|66f10b12013dcad0c0dd0516","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 329.134958ms + duration: 342.4635ms - id: 147 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -5322,33 +5183,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.679584ms + duration: 339.8535ms - id: 148 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -5358,33 +5218,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.788833ms + duration: 342.736167ms - id: 149 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5400,27 +5259,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 384.273959ms + duration: 359.003709ms - id: 150 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5436,27 +5294,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.878708ms + duration: 408.680375ms - id: 151 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -5466,33 +5323,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","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":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.686291ms + duration: 406.972125ms - id: 152 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -5502,33 +5358,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","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":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 323.824584ms + duration: 343.977833ms - id: 153 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5538,33 +5393,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.026416ms + duration: 346.734083ms - id: 154 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5572,35 +5426,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.053375ms + duration: 339.557708ms - id: 155 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -5610,33 +5463,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 315.871583ms + duration: 374.094417ms - id: 156 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b11dfeafe76a08aeed5 method: GET response: proto: HTTP/2.0 @@ -5644,35 +5496,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-09-23T06:30:41.821Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b11dfeafe76a08aeed5","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":"2024-09-23T06:30:41.821Z","user_id":"auth0|66f10b11dfeafe76a08aeed5","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.160417ms + duration: 361.883958ms - id: 157 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b12013dcad0c0dd0516 method: GET response: proto: HTTP/2.0 @@ -5682,33 +5533,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","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":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-09-23T06:30:42.669Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b12013dcad0c0dd0516","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":"2024-09-23T06:30:42.669Z","user_id":"auth0|66f10b12013dcad0c0dd0516","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 384.703458ms + duration: 403.287625ms - id: 158 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -5718,33 +5568,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","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":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 344.691ms + duration: 399.280291ms - id: 159 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -5754,105 +5603,102 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 368.538875ms + duration: 342.079791ms - id: 160 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"members":["auth0|66549949cd5cb856cecf5af3"]} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/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: 353.468125ms + status: 200 OK + code: 200 + duration: 336.17275ms - id: 161 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"members":["auth0|6654994f3a478dce1bb585d0"]} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 14 uncompressed: false - body: "" + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 353.596125ms + status: 200 OK + code: 200 + duration: 337.492666ms - id: 162 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -5862,33 +5708,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 353.534708ms + duration: 410.441083ms - id: 163 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b11dfeafe76a08aeed5 method: GET response: proto: HTTP/2.0 @@ -5898,33 +5743,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + body: '{"created_at":"2024-09-23T06:30:41.821Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b11dfeafe76a08aeed5","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":"2024-09-23T06:30:41.821Z","user_id":"auth0|66f10b11dfeafe76a08aeed5","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 353.430583ms + duration: 329.774125ms - id: 164 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b12013dcad0c0dd0516 method: GET response: proto: HTTP/2.0 @@ -5932,35 +5776,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-09-23T06:30:42.669Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b12013dcad0c0dd0516","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":"2024-09-23T06:30:42.669Z","user_id":"auth0|66f10b12013dcad0c0dd0516","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 427.988125ms + duration: 333.8855ms - id: 165 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -5968,35 +5811,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 428.239667ms + duration: 356.184625ms - id: 166 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -6006,33 +5848,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","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":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 312.45725ms + duration: 340.640042ms - id: 167 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6042,33 +5883,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","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":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.449208ms + duration: 343.752208ms - id: 168 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6076,35 +5916,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.999125ms + duration: 340.123542ms - id: 169 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -6114,33 +5953,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.514542ms + duration: 335.889292ms - id: 170 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b11dfeafe76a08aeed5 method: GET response: proto: HTTP/2.0 @@ -6150,33 +5988,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + body: '{"created_at":"2024-09-23T06:30:41.821Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b11dfeafe76a08aeed5","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":"2024-09-23T06:30:41.821Z","user_id":"auth0|66f10b11dfeafe76a08aeed5","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 319.217ms + duration: 405.604459ms - id: 171 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b12013dcad0c0dd0516 method: GET response: proto: HTTP/2.0 @@ -6184,35 +6021,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-09-23T06:30:42.669Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b12013dcad0c0dd0516","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":"2024-09-23T06:30:42.669Z","user_id":"auth0|66f10b12013dcad0c0dd0516","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 382.061167ms + duration: 365.768458ms - id: 172 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -6220,35 +6056,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 397.585917ms + duration: 392.123833ms - id: 173 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -6258,33 +6093,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.250333ms + duration: 404.253875ms - id: 174 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6292,35 +6126,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + 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: 299.07475ms + duration: 347.866834ms - id: 175 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6328,35 +6161,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 407.225416ms + duration: 330.640875ms - id: 176 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -6366,33 +6198,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 408.023875ms + duration: 350.509708ms - id: 177 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b11dfeafe76a08aeed5 method: GET response: proto: HTTP/2.0 @@ -6402,33 +6233,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + body: '{"created_at":"2024-09-23T06:30:41.821Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b11dfeafe76a08aeed5","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":"2024-09-23T06:30:41.821Z","user_id":"auth0|66f10b11dfeafe76a08aeed5","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 312.463916ms + duration: 338.747458ms - id: 178 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b12013dcad0c0dd0516 method: GET response: proto: HTTP/2.0 @@ -6436,35 +6266,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-09-23T06:30:42.669Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b12013dcad0c0dd0516","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":"2024-09-23T06:30:42.669Z","user_id":"auth0|66f10b12013dcad0c0dd0516","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 289.679417ms + duration: 419.055875ms - id: 179 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -6474,105 +6303,104 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","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":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.265791ms + duration: 377.277375ms - id: 180 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|66f10b12013dcad0c0dd0516"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","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":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 294.252208ms + status: 204 No Content + code: 204 + duration: 353.685458ms - id: 181 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|66f10b11dfeafe76a08aeed5"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 304.539833ms + status: 204 No Content + code: 204 + duration: 354.593917ms - id: 182 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6582,33 +6410,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + body: '{"members":[{"user_id":"auth0|66f10b12013dcad0c0dd0516"},{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.10475ms + duration: 352.2015ms - id: 183 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6618,33 +6445,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + body: '{"members":[{"user_id":"auth0|66f10b12013dcad0c0dd0516"},{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.893292ms + duration: 360.473708ms - id: 184 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6660,27 +6486,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.432042ms + duration: 382.560625ms - id: 185 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6696,27 +6521,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.736291ms + duration: 389.90975ms - id: 186 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b11dfeafe76a08aeed5 method: GET response: proto: HTTP/2.0 @@ -6726,33 +6550,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + body: '{"created_at":"2024-09-23T06:30:41.821Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b11dfeafe76a08aeed5","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":"2024-09-23T06:30:41.821Z","user_id":"auth0|66f10b11dfeafe76a08aeed5","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.057208ms + duration: 329.962833ms - id: 187 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b12013dcad0c0dd0516 method: GET response: proto: HTTP/2.0 @@ -6760,35 +6583,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-09-23T06:30:42.669Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b12013dcad0c0dd0516","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":"2024-09-23T06:30:42.669Z","user_id":"auth0|66f10b12013dcad0c0dd0516","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.803209ms + duration: 366.789042ms - id: 188 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -6798,33 +6620,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.973041ms + duration: 405.671ms - id: 189 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6834,33 +6655,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"members":[{"user_id":"auth0|66f10b12013dcad0c0dd0516"},{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.831208ms + duration: 349.277375ms - id: 190 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6870,33 +6690,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + body: '{"members":[{"user_id":"auth0|66f10b12013dcad0c0dd0516"},{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.331667ms + duration: 435.238292ms - id: 191 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6912,27 +6731,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.050333ms + duration: 356.768709ms - id: 192 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6940,35 +6758,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.586666ms + duration: 319.014125ms - id: 193 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6978,33 +6795,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"members":[{"user_id":"auth0|66f10b12013dcad0c0dd0516"},{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 338.160333ms + duration: 444.716459ms - id: 194 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -7012,35 +6828,804 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 371.77625ms + - id: 195 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 328.832541ms + - id: 196 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/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: 342.417209ms + - id: 197 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=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|66f10b12013dcad0c0dd0516"},{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 407.509833ms + - id: 198 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 429.187208ms + - id: 199 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 410.032667ms + - id: 200 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b11dfeafe76a08aeed5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-09-23T06:30:41.821Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b11dfeafe76a08aeed5","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":"2024-09-23T06:30:41.821Z","user_id":"auth0|66f10b11dfeafe76a08aeed5","username":"testaccorganizationmembers11"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 328.605875ms + - id: 201 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b12013dcad0c0dd0516 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-09-23T06:30:42.669Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b12013dcad0c0dd0516","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":"2024-09-23T06:30:42.669Z","user_id":"auth0|66f10b12013dcad0c0dd0516","username":"testaccorganizationmembers22"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 344.791333ms + - id: 202 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 435.123084ms + - id: 203 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=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|66f10b12013dcad0c0dd0516"},{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 405.186833ms + - id: 204 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=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|66f10b12013dcad0c0dd0516"},{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 405.183583ms + - id: 205 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 406.1915ms + - id: 206 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 485.303ms + - id: 207 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=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|66f10b12013dcad0c0dd0516"},{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 339.986ms + - id: 208 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 321.955791ms + - id: 209 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 373.254417ms + - id: 210 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/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: 344.906208ms + - id: 211 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=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|66f10b12013dcad0c0dd0516"},{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 372.27675ms + - id: 212 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 405.68075ms + - id: 213 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/client-grants?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|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 408.698666ms - - id: 195 + duration: 410.848167ms + - id: 214 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 341.847333ms + - id: 215 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/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: 333.506666ms + - id: 216 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=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|66f10b12013dcad0c0dd0516"},{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 358.339625ms + - id: 217 + 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -7056,27 +7641,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.663542ms - - id: 196 + duration: 342.634584ms + - id: 218 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/client-grants?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -7086,33 +7670,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","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":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' + body: '{"client_grants":[],"start":0,"limit":50,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.85825ms - - id: 197 + duration: 436.750667ms + - id: 219 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b11dfeafe76a08aeed5 method: GET response: proto: HTTP/2.0 @@ -7122,33 +7705,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","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":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-09-23T06:30:41.821Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b11dfeafe76a08aeed5","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":"2024-09-23T06:30:41.821Z","user_id":"auth0|66f10b11dfeafe76a08aeed5","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 322.830916ms - - id: 198 + duration: 338.836334ms + - id: 220 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b12013dcad0c0dd0516 method: GET response: proto: HTTP/2.0 @@ -7158,33 +7740,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"created_at":"2024-09-23T06:30:42.669Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66f10b12013dcad0c0dd0516","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":"2024-09-23T06:30:42.669Z","user_id":"auth0|66f10b12013dcad0c0dd0516","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 414.279167ms - - id: 199 + duration: 337.1355ms + - id: 221 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -7194,33 +7775,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 468.779ms - - id: 200 + duration: 477.213ms + - id: 222 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -7230,33 +7810,67 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + body: '{"members":[{"user_id":"auth0|66f10b12013dcad0c0dd0516"},{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 468.679125ms - - id: 201 + duration: 406.867416ms + - id: 223 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=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|66f10b12013dcad0c0dd0516"},{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 431.714625ms + - id: 224 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -7272,27 +7886,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 357.012917ms - - id: 202 + duration: 339.9785ms + - id: 225 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -7308,27 +7921,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 356.838458ms - - id: 203 + duration: 332.260083ms + - id: 226 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -7338,33 +7950,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + body: '{"members":[{"user_id":"auth0|66f10b12013dcad0c0dd0516"},{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.138125ms - - id: 204 + duration: 337.594875ms + - id: 227 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -7380,27 +7991,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 332.269334ms - - id: 205 + duration: 322.2105ms + - id: 228 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: GET response: proto: HTTP/2.0 @@ -7410,33 +8020,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_sB2R1mKQ8VSFyOKS","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 352.303583ms - - id: 206 + duration: 337.485875ms + - id: 229 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -7452,27 +8061,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 348.546791ms - - id: 207 + duration: 369.6115ms + - id: 230 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -7482,33 +8090,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' + body: '{"members":[{"user_id":"auth0|66f10b12013dcad0c0dd0516"},{"user_id":"auth0|66f10b11dfeafe76a08aeed5"}],"next":"MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 425.768333ms - - id: 208 + duration: 346.490167ms + - id: 231 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/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members?fields=user_id&from=MjAyNC0wOS0yMyAwNjozMjowMi45MTcwMDBVVEMsYXV0aDB8NjZmMTBiMTIwMTNkY2FkMGMwZGQwNTE2&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -7524,8 +8131,43 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 350.564292ms - - id: 209 + duration: 367.820375ms + - id: 232 + 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/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/client-grants?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: '{"client_grants":[],"start":0,"limit":50,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 408.93375ms + - id: 233 request: proto: HTTP/1.1 proto_major: 1 @@ -7537,14 +8179,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|66549949cd5cb856cecf5af3"]} + {"members":["auth0|66f10b11dfeafe76a08aeed5"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members method: DELETE response: proto: HTTP/2.0 @@ -7560,8 +8202,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 282.197458ms - - id: 210 + duration: 334.577667ms + - id: 234 request: proto: HTTP/1.1 proto_major: 1 @@ -7573,14 +8215,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|66549949cd5cb856cecf5af3","auth0|6654994f3a478dce1bb585d0"]} + {"members":["auth0|66f10b11dfeafe76a08aeed5","auth0|66f10b12013dcad0c0dd0516"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members method: DELETE response: proto: HTTP/2.0 @@ -7596,8 +8238,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 313.037417ms - - id: 211 + duration: 339.736375ms + - id: 235 request: proto: HTTP/1.1 proto_major: 1 @@ -7609,14 +8251,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|6654994f3a478dce1bb585d0"]} + {"members":["auth0|66f10b12013dcad0c0dd0516"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS/members method: DELETE response: proto: HTTP/2.0 @@ -7632,8 +8274,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 283.234167ms - - id: 212 + duration: 329.287292ms + - id: 236 request: proto: HTTP/1.1 proto_major: 1 @@ -7650,8 +8292,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_sB2R1mKQ8VSFyOKS method: DELETE response: proto: HTTP/2.0 @@ -7667,8 +8309,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 307.356958ms - - id: 213 + duration: 384.476333ms + - id: 237 request: proto: HTTP/1.1 proto_major: 1 @@ -7685,8 +8327,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b12013dcad0c0dd0516 method: DELETE response: proto: HTTP/2.0 @@ -7702,8 +8344,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 359.742167ms - - id: 214 + duration: 533.106625ms + - id: 238 request: proto: HTTP/1.1 proto_major: 1 @@ -7720,8 +8362,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66f10b11dfeafe76a08aeed5 method: DELETE response: proto: HTTP/2.0 @@ -7737,4 +8379,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 306.012834ms + duration: 398.998875ms