diff --git a/btp/provider/datasource_subaccount.go b/btp/provider/datasource_subaccount.go
index 863a7b2e..d7e1a8aa 100644
--- a/btp/provider/datasource_subaccount.go
+++ b/btp/provider/datasource_subaccount.go
@@ -145,6 +145,10 @@ You must be assigned to the admin or viewer role of the global account, director
getFormattedValueAsTableRow("`USED_FOR_PRODUCTION`", "The subaccount is used for production purposes."),
Computed: true,
},
+ "contract_status": schema.StringAttribute{
+ MarkdownDescription: "Shows the contract status of the subaccount.",
+ Computed: true,
+ },
},
}
}
diff --git a/btp/provider/datasource_subaccount_test.go b/btp/provider/datasource_subaccount_test.go
index 3191e5d6..5e54fb36 100644
--- a/btp/provider/datasource_subaccount_test.go
+++ b/btp/provider/datasource_subaccount_test.go
@@ -36,6 +36,7 @@ func TestDataSourceSubaccount(t *testing.T) {
resource.TestCheckResourceAttr("data.btp_subaccount.test", "region", "eu12"),
resource.TestCheckResourceAttr("data.btp_subaccount.test", "state", "OK"),
resource.TestCheckResourceAttr("data.btp_subaccount.test", "usage", "NOT_USED_FOR_PRODUCTION"),
+ resource.TestCheckResourceAttr("data.btp_subaccount.test", "contract_status", "ACTIVE"),
),
},
},
@@ -65,6 +66,7 @@ func TestDataSourceSubaccount(t *testing.T) {
resource.TestCheckResourceAttr("data.btp_subaccount.test", "region", "eu12"),
resource.TestCheckResourceAttr("data.btp_subaccount.test", "state", "OK"),
resource.TestCheckResourceAttr("data.btp_subaccount.test", "usage", "NOT_USED_FOR_PRODUCTION"),
+ resource.TestCheckResourceAttr("data.btp_subaccount.test", "contract_status", "ACTIVE"),
),
},
},
@@ -81,7 +83,7 @@ func TestDataSourceSubaccount(t *testing.T) {
Steps: []resource.TestStep{
{
Config: hclProviderFor(user) + hclDatasourceSubaccountById("test", "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee"),
- ExpectError: regexp.MustCompile(`404 Not Found: \[no body\] \[Error: 404\]`), // TODO improve error text
+ ExpectError: regexp.MustCompile(`Error: API Error Reading Resource Subaccount`),
},
},
})
diff --git a/btp/provider/datasource_subaccounts.go b/btp/provider/datasource_subaccounts.go
index c17c1752..c176ad19 100644
--- a/btp/provider/datasource_subaccounts.go
+++ b/btp/provider/datasource_subaccounts.go
@@ -34,9 +34,10 @@ var subaccountObjType = types.ObjectType{
},
"region": types.StringType,
- "state": types.StringType,
- "subdomain": types.StringType,
- "usage": types.StringType,
+ "state": types.StringType,
+ "subdomain": types.StringType,
+ "usage": types.StringType,
+ "contract_status": types.StringType,
},
}
@@ -178,6 +179,10 @@ You must be assigned to the admin or viewer role of the global account, director
getFormattedValueAsTableRow("`USED_FOR_PRODUCTION`", "The subaccount is used for production purposes."),
Computed: true,
},
+ "contract_status": schema.StringAttribute{
+ MarkdownDescription: "Shows the contract status of the subaccount.",
+ Computed: true,
+ },
},
},
MarkdownDescription: "The subaccounts contained in the global account.",
@@ -212,18 +217,19 @@ func (ds *subaccountsDataSource) Read(ctx context.Context, req datasource.ReadRe
for _, subaccountRes := range cliRes.Value {
c := subaccountDataSourceType{
- ID: types.StringValue(subaccountRes.Guid),
- BetaEnabled: types.BoolValue(subaccountRes.BetaEnabled),
- CreatedBy: types.StringValue(subaccountRes.CreatedBy),
- CreatedDate: timeToValue(subaccountRes.CreatedDate.Time()),
- Description: types.StringValue(subaccountRes.Description),
- LastModified: timeToValue(subaccountRes.ModifiedDate.Time()),
- Name: types.StringValue(subaccountRes.DisplayName),
- ParentID: types.StringValue(subaccountRes.ParentGUID),
- Region: types.StringValue(subaccountRes.Region),
- State: types.StringValue(subaccountRes.State),
- Subdomain: types.StringValue(subaccountRes.Subdomain),
- Usage: types.StringValue(subaccountRes.UsedForProduction),
+ ID: types.StringValue(subaccountRes.Guid),
+ BetaEnabled: types.BoolValue(subaccountRes.BetaEnabled),
+ CreatedBy: types.StringValue(subaccountRes.CreatedBy),
+ CreatedDate: timeToValue(subaccountRes.CreatedDate.Time()),
+ Description: types.StringValue(subaccountRes.Description),
+ LastModified: timeToValue(subaccountRes.ModifiedDate.Time()),
+ Name: types.StringValue(subaccountRes.DisplayName),
+ ParentID: types.StringValue(subaccountRes.ParentGUID),
+ Region: types.StringValue(subaccountRes.Region),
+ State: types.StringValue(subaccountRes.State),
+ Subdomain: types.StringValue(subaccountRes.Subdomain),
+ Usage: types.StringValue(subaccountRes.UsedForProduction),
+ ContractStatus: types.StringValue(subaccountRes.ContractStatus),
}
c.Labels, diags = types.MapValueFrom(ctx, types.SetType{ElemType: types.StringType}, subaccountRes.Labels)
diff --git a/btp/provider/datasource_subaccounts_test.go b/btp/provider/datasource_subaccounts_test.go
index 5a60036e..1c20fb82 100644
--- a/btp/provider/datasource_subaccounts_test.go
+++ b/btp/provider/datasource_subaccounts_test.go
@@ -20,7 +20,7 @@ func TestDataSourceSubaccounts(t *testing.T) {
{
Config: hclProviderFor(user) + hclDatasourceSubaccounts("uut"),
Check: resource.ComposeAggregateTestCheckFunc(
- resource.TestCheckResourceAttr("data.btp_subaccounts.uut", "values.#", "9"),
+ resource.TestCheckResourceAttr("data.btp_subaccounts.uut", "values.#", "10"),
),
},
},
diff --git a/btp/provider/fixtures/datasource_subaccount.err_invalid_subdomain.yaml b/btp/provider/fixtures/datasource_subaccount.err_invalid_subdomain.yaml
index 388603b0..567a769c 100644
--- a/btp/provider/fixtures/datasource_subaccount.err_invalid_subdomain.yaml
+++ b/btp/provider/fixtures/datasource_subaccount.err_invalid_subdomain.yaml
@@ -6,7 +6,7 @@ interactions:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -19,9 +19,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 70d477ee-90c3-9e65-4f0d-c13dfde55846
+ - c6abf27f-38e8-bd18-284b-2266c3e97e3e
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -32,20 +32,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 149
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "149"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:51 GMT
+ - Tue, 24 Feb 2026 15:20:58 GMT
Expires:
- "0"
Pragma:
@@ -61,12 +61,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 09198293-ed68-4d08-58dd-ac3142225ecd
+ - 958de5a9-2bb5-4748-4b31-3e8c0d0cbfa7
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 467.215959ms
+ duration: 2.800380168s
- id: 1
request:
proto: HTTP/1.1
@@ -85,9 +85,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 666d6f57-fda5-8d31-daaf-b2d7385a97d4
+ - 70ea3092-c29f-f050-386f-40c7ee8e3250
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -106,7 +106,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"value":[{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+1@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM"},{"guid":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","technicalName":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","displayName":"dcmcanary_20241108084819","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"btp-gp43a2b332-be5b-e3f8-50fb-77c947700e54","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 8, 2024, 8:48:21 AM","createdBy":"DL_65DDA8EBA97EAA0134EEB5DC@global.corp.sap","modifiedDate":"Nov 8, 2024, 8:48:43 AM"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe+2@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Nov 12, 2024, 6:10:18 AM"},{"guid":"bcbefbb2-3365-428b-9d39-cab13197cf43","technicalName":"bcbefbb2-3365-428b-9d39-cab13197cf43","displayName":"test_prajin","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu10-canary","subdomain":"test-prajin-sgomvyh6","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 21, 2024, 6:32:04 AM","createdBy":"john.doe+4@int.test","modifiedDate":"Nov 21, 2024, 6:32:27 AM"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+6@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM"},{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+7@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM"}]}'
+ body: '{"value":[{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+1@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+2@int.test"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+4@int.test"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+6@int.test"},{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe+7@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+8@int.test"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+9@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+10@int.test"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+11@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+12@int.test"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+13@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+14@int.test"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+15@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+16@int.test"}]}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -115,7 +115,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:52 GMT
+ - Tue, 24 Feb 2026 15:20:58 GMT
Expires:
- "0"
Pragma:
@@ -133,9 +133,9 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - da7d8107-d771-497f-45bf-c11edf9716a8
+ - 2e11b19e-f72e-41b5-76d6-2fb4aaff6157
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 293.772792ms
+ duration: 158.177708ms
diff --git a/btp/provider/fixtures/datasource_subaccount.err_subaccount_doesnt_exist.yaml b/btp/provider/fixtures/datasource_subaccount.err_subaccount_doesnt_exist.yaml
index 2415b6e1..eb6b0483 100644
--- a/btp/provider/fixtures/datasource_subaccount.err_subaccount_doesnt_exist.yaml
+++ b/btp/provider/fixtures/datasource_subaccount.err_subaccount_doesnt_exist.yaml
@@ -6,7 +6,7 @@ interactions:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -19,9 +19,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - d50a8728-280c-adf8-8f27-75b4587375df
+ - ec22e15b-c2cf-7a1f-ca4d-7d81a8eef11d
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -32,20 +32,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 149
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "149"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:49 GMT
+ - Tue, 24 Feb 2026 15:20:54 GMT
Expires:
- "0"
Pragma:
@@ -61,12 +61,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 16b01e63-8e3b-4639-5852-dbd6ea4080c2
+ - bb8cd59f-995b-475d-4b7c-819f73e07d58
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 438.218166ms
+ duration: 518.945459ms
- id: 1
request:
proto: HTTP/1.1
@@ -85,9 +85,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - a4a904b9-e041-69a4-7d9c-cdcabc6fba4a
+ - a757e4e0-bb5b-c032-65d0-5fab0991cf4d
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -106,7 +106,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"error":"404 Not Found: [no body] [Error: 404]"}'
+ body: '{"error":"Subaccount aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee not found [Error: 20004/404]"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -115,7 +115,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:49 GMT
+ - Tue, 24 Feb 2026 15:20:55 GMT
Expires:
- "0"
Pragma:
@@ -133,9 +133,9 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - cbc596bd-eea3-4de1-7688-4ca738e7d643
+ - ab5f77af-54e0-44db-7246-d6832f027802
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 355.532542ms
+ duration: 228.245167ms
diff --git a/btp/provider/fixtures/datasource_subaccount.yaml b/btp/provider/fixtures/datasource_subaccount.yaml
index a621420d..4fe4a0dc 100644
--- a/btp/provider/fixtures/datasource_subaccount.yaml
+++ b/btp/provider/fixtures/datasource_subaccount.yaml
@@ -6,7 +6,7 @@ interactions:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -19,9 +19,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 27301120-8ab0-bfc6-e49e-d419e010d5bc
+ - 23416f48-5883-1bef-c7ca-7cf402dcf9db
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -32,20 +32,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 149
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "149"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:35 GMT
+ - Tue, 24 Feb 2026 15:20:34 GMT
Expires:
- "0"
Pragma:
@@ -61,12 +61,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 79ce9adb-ee6b-4d77-60b7-4b03644304e2
+ - 65056678-6034-4412-55f8-1468ecf4fa67
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 1.373352917s
+ duration: 785.244126ms
- id: 1
request:
proto: HTTP/1.1
@@ -85,9 +85,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 8cd375b7-a273-df32-2b3f-68bb30b675d3
+ - 073afb85-97e5-8db7-60a1-f5f2052e2c48
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -106,7 +106,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"value":[{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+1@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+2@int.test","modifiedDate":"Nov 12, 2024, 6:10:18 AM"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe+3@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM"},{"guid":"bcbefbb2-3365-428b-9d39-cab13197cf43","technicalName":"bcbefbb2-3365-428b-9d39-cab13197cf43","displayName":"test_prajin","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu10-canary","subdomain":"test-prajin-sgomvyh6","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 21, 2024, 6:32:04 AM","createdBy":"john.doe+4@int.test","modifiedDate":"Nov 21, 2024, 6:32:27 AM"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe+6@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM"},{"guid":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","technicalName":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","displayName":"dcmcanary_20241108084819","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"btp-gp43a2b332-be5b-e3f8-50fb-77c947700e54","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 8, 2024, 8:48:21 AM","createdBy":"DL_65DDA8EBA97EAA0134EEB5DC@global.corp.sap","modifiedDate":"Nov 8, 2024, 8:48:43 AM"},{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+7@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM"}]}'
+ body: '{"value":[{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+2@int.test"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+4@int.test"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+6@int.test"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+7@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+8@int.test"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+9@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+10@int.test"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+11@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+12@int.test"},{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe+13@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+14@int.test"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+15@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+16@int.test"}]}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -115,7 +115,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:35 GMT
+ - Tue, 24 Feb 2026 15:20:34 GMT
Expires:
- "0"
Pragma:
@@ -133,12 +133,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - fef546d7-005e-4c1f-7b96-5b72fc890af8
+ - c9a6d1c1-f8d0-4f62-5a7c-10e6d54b290a
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 321.549916ms
+ duration: 243.183833ms
- id: 2
request:
proto: HTTP/1.1
@@ -157,9 +157,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 222a6023-ee13-f56f-5c47-79812b97d37e
+ - 0b8e8a6c-0bea-619e-b08b-85f4d8327934
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -178,7 +178,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM"}'
+ body: '{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+2@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -187,7 +187,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:36 GMT
+ - Tue, 24 Feb 2026 15:20:34 GMT
Expires:
- "0"
Pragma:
@@ -205,18 +205,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 3d326de0-70b4-4853-542d-3a0a508ff6bb
+ - 3a1447bf-f631-4a3a-625f-0ec96095e1f9
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 315.224917ms
+ duration: 89.775292ms
- id: 3
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -229,9 +229,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 5332405b-c574-0c67-d31a-0257969b1312
+ - 01306f85-3956-4659-94a8-d68336c45ac1
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -242,20 +242,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 149
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "149"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:36 GMT
+ - Tue, 24 Feb 2026 15:20:35 GMT
Expires:
- "0"
Pragma:
@@ -271,18 +271,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 8d603005-25d6-4ccb-40f3-82280a8829e7
+ - 993e6244-912c-4c88-7d2d-ff8f09e9c53b
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 537.061334ms
+ duration: 367.543208ms
- id: 4
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -295,9 +295,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - f5196433-e1a0-2102-e932-56575e7ee33d
+ - 0f060e13-cfdf-96bb-552c-43a8709ea149
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -308,20 +308,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 149
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "149"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:37 GMT
+ - Tue, 24 Feb 2026 15:20:38 GMT
Expires:
- "0"
Pragma:
@@ -337,12 +337,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - e7ee3987-063a-4fc8-46da-9f3457484c76
+ - b107b783-0261-4c7e-5619-4355878a2b93
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 486.911458ms
+ duration: 3.171789585s
- id: 5
request:
proto: HTTP/1.1
@@ -361,9 +361,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 650232fc-74bf-4425-6248-9f1df8b61cb1
+ - 02869d24-2e1f-e444-7c2a-6e972b31b4aa
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -382,7 +382,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"value":[{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+2@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe+3@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+4@int.test","modifiedDate":"Nov 12, 2024, 6:10:18 AM"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM"},{"guid":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","technicalName":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","displayName":"dcmcanary_20241108084819","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"btp-gp43a2b332-be5b-e3f8-50fb-77c947700e54","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 8, 2024, 8:48:21 AM","createdBy":"DL_65DDA8EBA97EAA0134EEB5DC@global.corp.sap","modifiedDate":"Nov 8, 2024, 8:48:43 AM"},{"guid":"bcbefbb2-3365-428b-9d39-cab13197cf43","technicalName":"bcbefbb2-3365-428b-9d39-cab13197cf43","displayName":"test_prajin","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu10-canary","subdomain":"test-prajin-sgomvyh6","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 21, 2024, 6:32:04 AM","createdBy":"john.doe+6@int.test","modifiedDate":"Nov 21, 2024, 6:32:27 AM"},{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+7@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM"}]}'
+ body: '{"value":[{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+2@int.test"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+4@int.test"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+6@int.test"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe+7@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+8@int.test"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+9@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+10@int.test"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+11@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+12@int.test"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+13@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+14@int.test"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+15@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+16@int.test"}]}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -391,7 +391,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:37 GMT
+ - Tue, 24 Feb 2026 15:20:38 GMT
Expires:
- "0"
Pragma:
@@ -409,12 +409,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 40f8acc8-f1d4-47c3-4fd1-5171fe6c103e
+ - 9a2c7abb-67dc-4e08-4fa0-1494de17c47f
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 297.95375ms
+ duration: 304.050792ms
- id: 6
request:
proto: HTTP/1.1
@@ -433,9 +433,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 76097de4-65ad-8f52-8b90-8b1720636b49
+ - 746a5edc-ce32-d22d-296d-3e9270607ca3
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -454,7 +454,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM"}'
+ body: '{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+2@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -463,7 +463,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:37 GMT
+ - Tue, 24 Feb 2026 15:20:38 GMT
Expires:
- "0"
Pragma:
@@ -481,18 +481,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 1952dc32-37a6-4d46-6d01-6ba17f8cf2b2
+ - 67993392-729f-4dde-59a9-9584ecaf98c2
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 349.450833ms
+ duration: 85.709333ms
- id: 7
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -505,9 +505,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 60fc2de9-d24b-e4b1-a480-c6456c1af099
+ - ce9d38ff-1031-ac82-8f33-6db50f8c5ea1
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -518,20 +518,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 149
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "149"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:38 GMT
+ - Tue, 24 Feb 2026 15:20:39 GMT
Expires:
- "0"
Pragma:
@@ -547,12 +547,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 9b0d6819-db93-467d-7fd8-4556a4c274c1
+ - ee5923ca-70d7-4fd4-54dc-c2255d17aebb
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 981.213833ms
+ duration: 427.223834ms
- id: 8
request:
proto: HTTP/1.1
@@ -571,9 +571,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - edf74994-6017-88a2-bac6-e43a4fdee7d5
+ - dff68921-2111-bf86-6c4f-987b81a73d63
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -592,7 +592,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"value":[{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+1@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM"},{"guid":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","technicalName":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","displayName":"dcmcanary_20241108084819","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"btp-gp43a2b332-be5b-e3f8-50fb-77c947700e54","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 8, 2024, 8:48:21 AM","createdBy":"DL_65DDA8EBA97EAA0134EEB5DC@global.corp.sap","modifiedDate":"Nov 8, 2024, 8:48:43 AM"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe+2@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Nov 12, 2024, 6:10:18 AM"},{"guid":"bcbefbb2-3365-428b-9d39-cab13197cf43","technicalName":"bcbefbb2-3365-428b-9d39-cab13197cf43","displayName":"test_prajin","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu10-canary","subdomain":"test-prajin-sgomvyh6","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 21, 2024, 6:32:04 AM","createdBy":"john.doe+4@int.test","modifiedDate":"Nov 21, 2024, 6:32:27 AM"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+6@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM"},{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+7@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM"}]}'
+ body: '{"value":[{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+1@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+2@int.test"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+4@int.test"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+6@int.test"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+7@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+8@int.test"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+9@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+10@int.test"},{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe+11@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+12@int.test"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+13@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+14@int.test"},{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+15@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+16@int.test"}]}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -601,7 +601,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:39 GMT
+ - Tue, 24 Feb 2026 15:20:39 GMT
Expires:
- "0"
Pragma:
@@ -619,12 +619,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 0fe4c3ce-cae0-4f87-7283-70866a50e874
+ - d6de8e38-ed3b-42ee-6598-d6a4bc7ace26
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 307.778917ms
+ duration: 292.58475ms
- id: 9
request:
proto: HTTP/1.1
@@ -643,9 +643,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - f2d4c227-128a-6083-f735-99dc14bb9461
+ - ce8a7b14-45e5-6a2e-55b3-77ab5bf42272
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -664,7 +664,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM"}'
+ body: '{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+2@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -673,7 +673,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:39 GMT
+ - Tue, 24 Feb 2026 15:20:39 GMT
Expires:
- "0"
Pragma:
@@ -691,18 +691,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - e9dfaf95-db7c-41d7-7995-37a7ee615da1
+ - 2d417fd4-b31a-41d8-6ae8-813781b89d56
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 343.189959ms
+ duration: 90.996375ms
- id: 10
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -715,9 +715,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 9154e2e7-b10d-8541-7335-298f65311131
+ - 14d3e58a-ad54-2ccc-5b14-cd3c9a67816f
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -728,20 +728,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 149
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "149"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:41 GMT
+ - Tue, 24 Feb 2026 15:20:42 GMT
Expires:
- "0"
Pragma:
@@ -757,9 +757,9 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 038164c0-8be5-4282-4ff4-e59a33cd0811
+ - ce005cf5-fbc1-41ff-4c21-c02468a44d71
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 1.638923458s
+ duration: 2.392882876s
diff --git a/btp/provider/fixtures/datasource_subaccount_by_subdomain.yaml b/btp/provider/fixtures/datasource_subaccount_by_subdomain.yaml
index 6975dc67..9c06c672 100644
--- a/btp/provider/fixtures/datasource_subaccount_by_subdomain.yaml
+++ b/btp/provider/fixtures/datasource_subaccount_by_subdomain.yaml
@@ -6,7 +6,7 @@ interactions:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -19,9 +19,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - ae515947-7f6c-ae34-f7cb-e1aa84417997
+ - 256266ab-8157-3765-daeb-d295cbfd2e7e
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -32,20 +32,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 149
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "149"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:42 GMT
+ - Tue, 24 Feb 2026 15:20:42 GMT
Expires:
- "0"
Pragma:
@@ -61,12 +61,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 5f026531-85bd-4bf3-6bde-244ae11c7291
+ - feb02d7e-171c-4e14-7e78-9d6641cd4a72
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 442.1105ms
+ duration: 418.390584ms
- id: 1
request:
proto: HTTP/1.1
@@ -85,9 +85,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 4eb40ede-83e3-990c-d456-c0002658b380
+ - 402e2e6a-c910-f374-2634-7cc421e6b245
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -106,7 +106,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"value":[{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe+1@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe+2@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM"},{"guid":"bcbefbb2-3365-428b-9d39-cab13197cf43","technicalName":"bcbefbb2-3365-428b-9d39-cab13197cf43","displayName":"test_prajin","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu10-canary","subdomain":"test-prajin-sgomvyh6","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 21, 2024, 6:32:04 AM","createdBy":"john.doe+4@int.test","modifiedDate":"Nov 21, 2024, 6:32:27 AM"},{"guid":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","technicalName":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","displayName":"dcmcanary_20241108084819","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"btp-gp43a2b332-be5b-e3f8-50fb-77c947700e54","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 8, 2024, 8:48:21 AM","createdBy":"DL_65DDA8EBA97EAA0134EEB5DC@global.corp.sap","modifiedDate":"Nov 8, 2024, 8:48:43 AM"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Nov 12, 2024, 6:10:18 AM"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+6@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM"},{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+7@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM"}]}'
+ body: '{"value":[{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+2@int.test"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+4@int.test"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+6@int.test"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe+7@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+8@int.test"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+9@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+10@int.test"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+11@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+12@int.test"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+13@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+14@int.test"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+15@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+16@int.test"}]}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -115,7 +115,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:42 GMT
+ - Tue, 24 Feb 2026 15:20:43 GMT
Expires:
- "0"
Pragma:
@@ -133,12 +133,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 984843b0-6b63-4345-48c8-5c94307ba41c
+ - 6cf3ad8f-fb00-47e2-5f04-3c87d6b39616
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 311.411625ms
+ duration: 222.358208ms
- id: 2
request:
proto: HTTP/1.1
@@ -157,9 +157,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 5b02410c-3cc2-76ed-99c1-9beac207e94a
+ - 66d33143-fdf1-66ac-8f88-717180b56146
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -178,7 +178,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM"}'
+ body: '{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+2@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -187,7 +187,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:42 GMT
+ - Tue, 24 Feb 2026 15:20:43 GMT
Expires:
- "0"
Pragma:
@@ -205,18 +205,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 4b959be7-97a5-4abb-7441-98e105bf61a2
+ - eac2a73f-c6a1-4bf1-6549-6dfc1c853b0f
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 328.56525ms
+ duration: 96.05575ms
- id: 3
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -229,9 +229,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 5a5f3d3c-c282-0b4a-38a4-99ba075051fa
+ - c26610c9-0615-e626-1a34-2e8bdcfa1edb
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -242,20 +242,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 149
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "149"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:43 GMT
+ - Tue, 24 Feb 2026 15:20:46 GMT
Expires:
- "0"
Pragma:
@@ -271,18 +271,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - a4700328-cbf4-4eca-5d78-233fd96c82de
+ - 9a3e468c-fa2e-4360-73e4-be3605427a33
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 1.101609042s
+ duration: 3.097921835s
- id: 4
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -295,9 +295,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - b93a9f53-505d-eb91-fc2b-4500b4f5672e
+ - d28ddf3b-5d5d-534f-5d0b-70561d8fa842
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -308,20 +308,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 149
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "149"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:44 GMT
+ - Tue, 24 Feb 2026 15:20:46 GMT
Expires:
- "0"
Pragma:
@@ -337,12 +337,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 47139bc5-3258-4d22-7bcd-1a5d5b6d6fef
+ - 191ed259-d9e6-4edd-4f63-8cc96555879a
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 421.960334ms
+ duration: 360.393708ms
- id: 5
request:
proto: HTTP/1.1
@@ -361,9 +361,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - dffc968c-7471-d55f-e1c6-b3677b59d8d9
+ - 4eeddd9f-f3c4-0fba-33ac-08162f5a5dff
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -382,7 +382,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"value":[{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+1@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+2@int.test","modifiedDate":"Nov 12, 2024, 6:10:18 AM"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe+3@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM"},{"guid":"bcbefbb2-3365-428b-9d39-cab13197cf43","technicalName":"bcbefbb2-3365-428b-9d39-cab13197cf43","displayName":"test_prajin","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu10-canary","subdomain":"test-prajin-sgomvyh6","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 21, 2024, 6:32:04 AM","createdBy":"john.doe+4@int.test","modifiedDate":"Nov 21, 2024, 6:32:27 AM"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe+6@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM"},{"guid":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","technicalName":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","displayName":"dcmcanary_20241108084819","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"btp-gp43a2b332-be5b-e3f8-50fb-77c947700e54","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 8, 2024, 8:48:21 AM","createdBy":"DL_65DDA8EBA97EAA0134EEB5DC@global.corp.sap","modifiedDate":"Nov 8, 2024, 8:48:43 AM"},{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+7@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM"}]}'
+ body: '{"value":[{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+1@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+2@int.test"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+4@int.test"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+6@int.test"},{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe+7@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+8@int.test"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+9@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+10@int.test"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+11@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+12@int.test"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+13@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+14@int.test"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+15@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+16@int.test"}]}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -391,7 +391,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:44 GMT
+ - Tue, 24 Feb 2026 15:20:46 GMT
Expires:
- "0"
Pragma:
@@ -409,12 +409,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - c3d6014e-e813-4698-4137-13bc40e79afa
+ - 536a2f06-75ae-4037-73fa-9ea66ae9efac
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 362.447375ms
+ duration: 147.705375ms
- id: 6
request:
proto: HTTP/1.1
@@ -433,9 +433,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 14f26426-6595-8642-01d3-9f580124870e
+ - d503f150-c585-08cb-a30c-4cc745b11a8f
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -454,7 +454,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM"}'
+ body: '{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+2@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -463,7 +463,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:45 GMT
+ - Tue, 24 Feb 2026 15:20:46 GMT
Expires:
- "0"
Pragma:
@@ -481,18 +481,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - b60fc60d-932a-4855-437e-783f6cf32172
+ - 0b03a857-3fb1-4bf3-6139-198cf8449350
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 322.25825ms
+ duration: 74.176667ms
- id: 7
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -505,9 +505,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - fd1e8f2f-4460-6414-6d0f-69b4570789d7
+ - 188ed496-a40a-f06c-20dc-5d5e75136577
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -518,20 +518,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 149
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "149"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:46 GMT
+ - Tue, 24 Feb 2026 15:20:50 GMT
Expires:
- "0"
Pragma:
@@ -547,12 +547,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 8c33c22c-6a45-4344-7fad-d2a385455909
+ - c57ddf64-3659-496c-55fb-09e8f415de21
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 1.097772083s
+ duration: 3.385560543s
- id: 8
request:
proto: HTTP/1.1
@@ -571,9 +571,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 0b936147-2df8-baaa-7774-84091d9fe155
+ - f0f0e0af-3b7e-0f6b-b4c3-703e116f4306
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -592,7 +592,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"value":[{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+1@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM"},{"guid":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","technicalName":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","displayName":"dcmcanary_20241108084819","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"btp-gp43a2b332-be5b-e3f8-50fb-77c947700e54","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 8, 2024, 8:48:21 AM","createdBy":"DL_65DDA8EBA97EAA0134EEB5DC@global.corp.sap","modifiedDate":"Nov 8, 2024, 8:48:43 AM"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe+2@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Nov 12, 2024, 6:10:18 AM"},{"guid":"bcbefbb2-3365-428b-9d39-cab13197cf43","technicalName":"bcbefbb2-3365-428b-9d39-cab13197cf43","displayName":"test_prajin","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu10-canary","subdomain":"test-prajin-sgomvyh6","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 21, 2024, 6:32:04 AM","createdBy":"john.doe+4@int.test","modifiedDate":"Nov 21, 2024, 6:32:27 AM"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+6@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM"},{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+7@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM"}]}'
+ body: '{"value":[{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+2@int.test"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+4@int.test"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+5@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+6@int.test"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+7@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+8@int.test"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+9@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+10@int.test"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+11@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+12@int.test"},{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe+13@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+14@int.test"},{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+15@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+16@int.test"}]}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -601,7 +601,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:46 GMT
+ - Tue, 24 Feb 2026 15:20:50 GMT
Expires:
- "0"
Pragma:
@@ -619,12 +619,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 3928b8b1-9807-4ed0-71a1-925fb7273d27
+ - c0c4219b-8b8d-4363-5403-c5161af58c79
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 332.318917ms
+ duration: 607.087792ms
- id: 9
request:
proto: HTTP/1.1
@@ -643,9 +643,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 340f6e1d-3881-91c0-33fa-d84d913d982c
+ - eae51b05-201f-c193-8bee-7599d0685938
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -664,7 +664,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM"}'
+ body: '{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+2@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -673,7 +673,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:46 GMT
+ - Tue, 24 Feb 2026 15:20:51 GMT
Expires:
- "0"
Pragma:
@@ -691,18 +691,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - a9576eea-08b8-4f6b-55ba-f9236c1646f3
+ - 4e2200bb-04e5-4da5-68e2-b20274543870
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 294.951833ms
+ duration: 156.157542ms
- id: 10
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -715,9 +715,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - a9752ee7-281b-5f13-6397-b7a8d7c6e3be
+ - 1d3ba214-e2db-3399-d263-5a3c0d91491c
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -728,20 +728,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 149
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "149"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:48 GMT
+ - Tue, 24 Feb 2026 15:20:54 GMT
Expires:
- "0"
Pragma:
@@ -757,9 +757,9 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - dcd0cd32-8c7d-4de1-4448-57c87afba7f7
+ - 1d0a6154-60ff-4d02-7cb0-cbede02fc427
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 1.736410167s
+ duration: 3.026378501s
diff --git a/btp/provider/fixtures/datasource_subaccounts.all.yaml b/btp/provider/fixtures/datasource_subaccounts.all.yaml
index ebb94678..4ec74e26 100644
--- a/btp/provider/fixtures/datasource_subaccounts.all.yaml
+++ b/btp/provider/fixtures/datasource_subaccounts.all.yaml
@@ -6,7 +6,7 @@ interactions:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -19,9 +19,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 429fa214-e805-4fa1-75c6-e9a2f7acce42
+ - 52cab595-e832-2683-34ac-890f5af24520
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -32,20 +32,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 149
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "149"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:24 GMT
+ - Tue, 24 Feb 2026 15:15:14 GMT
Expires:
- "0"
Pragma:
@@ -61,12 +61,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 66ac0ad6-deab-4601-47d6-918ab0572913
+ - b87a00bd-863e-447b-5b40-1af2071aea5e
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 1.056601166s
+ duration: 2.751752417s
- id: 1
request:
proto: HTTP/1.1
@@ -85,9 +85,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - d3a96f7e-657b-acc2-57bf-25bd27171002
+ - 9d00ac0a-25cc-2ebb-772f-e3064b833946
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -106,7 +106,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"value":[{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+2@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe+3@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+4@int.test","modifiedDate":"Nov 12, 2024, 6:10:18 AM"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM"},{"guid":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","technicalName":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","displayName":"dcmcanary_20241108084819","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"btp-gp43a2b332-be5b-e3f8-50fb-77c947700e54","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 8, 2024, 8:48:21 AM","createdBy":"DL_65DDA8EBA97EAA0134EEB5DC@global.corp.sap","modifiedDate":"Nov 8, 2024, 8:48:43 AM"},{"guid":"bcbefbb2-3365-428b-9d39-cab13197cf43","technicalName":"bcbefbb2-3365-428b-9d39-cab13197cf43","displayName":"test_prajin","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu10-canary","subdomain":"test-prajin-sgomvyh6","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 21, 2024, 6:32:04 AM","createdBy":"john.doe+6@int.test","modifiedDate":"Nov 21, 2024, 6:32:27 AM"},{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+7@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM"}]}'
+ body: '{"value":[{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+2@int.test"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+3@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+4@int.test"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+6@int.test"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+7@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+8@int.test"},{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe+9@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+10@int.test"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+11@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+12@int.test"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+13@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+14@int.test"},{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+15@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+16@int.test"}]}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -115,7 +115,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:24 GMT
+ - Tue, 24 Feb 2026 15:15:14 GMT
Expires:
- "0"
Pragma:
@@ -133,18 +133,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 35f32858-bccc-41d7-5d4a-d39150c30b0a
+ - 3e6b9701-94bf-42c8-4f18-d48b8276b2b4
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 380.67675ms
+ duration: 306.03925ms
- id: 2
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -157,9 +157,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 8a7b6dfe-e12c-14d0-bde3-e4138f92fe4f
+ - c564344b-9ec3-0d9e-6e31-a656d731f97c
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -170,20 +170,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 149
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "149"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:25 GMT
+ - Tue, 24 Feb 2026 15:15:14 GMT
Expires:
- "0"
Pragma:
@@ -199,18 +199,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 395bc6d4-4a45-43dd-42bf-2220d0440328
+ - cd083cbe-6c1b-40dd-7414-d44e9a20f7c6
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 1.211419458s
+ duration: 357.466208ms
- id: 3
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -223,9 +223,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 078fc3ee-369b-390d-805d-a36e835d3d62
+ - aac9600b-44ce-bf2e-9396-f404de2fed4f
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -236,20 +236,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 149
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "149"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:26 GMT
+ - Tue, 24 Feb 2026 15:15:15 GMT
Expires:
- "0"
Pragma:
@@ -265,12 +265,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - b62381e4-b069-4644-74e1-9ce71489080b
+ - 93bbf36a-e08c-4a65-57e7-644b82cdff91
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 497.466042ms
+ duration: 408.096ms
- id: 4
request:
proto: HTTP/1.1
@@ -289,9 +289,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - e479865f-9789-d68c-7b0c-7e684540bb0f
+ - 866fa9e6-947a-f62e-515a-f6f8c37f8c5f
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -310,7 +310,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"value":[{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+2@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe+3@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+4@int.test","modifiedDate":"Nov 12, 2024, 6:10:18 AM"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM"},{"guid":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","technicalName":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","displayName":"dcmcanary_20241108084819","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"btp-gp43a2b332-be5b-e3f8-50fb-77c947700e54","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 8, 2024, 8:48:21 AM","createdBy":"DL_65DDA8EBA97EAA0134EEB5DC@global.corp.sap","modifiedDate":"Nov 8, 2024, 8:48:43 AM"},{"guid":"bcbefbb2-3365-428b-9d39-cab13197cf43","technicalName":"bcbefbb2-3365-428b-9d39-cab13197cf43","displayName":"test_prajin","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu10-canary","subdomain":"test-prajin-sgomvyh6","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 21, 2024, 6:32:04 AM","createdBy":"john.doe+6@int.test","modifiedDate":"Nov 21, 2024, 6:32:27 AM"},{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+7@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM"}]}'
+ body: '{"value":[{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+2@int.test"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+4@int.test"},{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+6@int.test"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+7@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+8@int.test"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+9@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+10@int.test"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+11@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+12@int.test"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+13@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+14@int.test"},{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+15@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+16@int.test"}]}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -319,7 +319,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:27 GMT
+ - Tue, 24 Feb 2026 15:15:15 GMT
Expires:
- "0"
Pragma:
@@ -337,18 +337,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - bef9fcc7-3cdd-497e-5910-7335c95dd320
+ - c9d612f4-dd7a-48cd-5705-d943bf39a18a
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 317.70075ms
+ duration: 223.012584ms
- id: 5
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -361,9 +361,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 3ec66585-1866-08a9-b1f4-b6068a99ff8b
+ - 68f0882c-864c-2c91-6e7d-1a7785196478
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -374,20 +374,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 149
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "149"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:27 GMT
+ - Tue, 24 Feb 2026 15:15:16 GMT
Expires:
- "0"
Pragma:
@@ -403,12 +403,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - ddfee63b-2ad6-4eac-43c9-a955c7c50bc8
+ - 0f56fe7c-3549-443f-6141-462a473068fb
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 466.690167ms
+ duration: 556.63375ms
- id: 6
request:
proto: HTTP/1.1
@@ -427,9 +427,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - e0b0bafa-a398-9397-b300-936bafdf2459
+ - 6075f64f-d59a-a3f9-1e26-b71d991fcb4e
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -448,7 +448,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"value":[{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+1@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+2@int.test","modifiedDate":"Nov 12, 2024, 6:10:18 AM"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe+3@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM"},{"guid":"bcbefbb2-3365-428b-9d39-cab13197cf43","technicalName":"bcbefbb2-3365-428b-9d39-cab13197cf43","displayName":"test_prajin","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu10-canary","subdomain":"test-prajin-sgomvyh6","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 21, 2024, 6:32:04 AM","createdBy":"john.doe+4@int.test","modifiedDate":"Nov 21, 2024, 6:32:27 AM"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe+6@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM"},{"guid":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","technicalName":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","displayName":"dcmcanary_20241108084819","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"btp-gp43a2b332-be5b-e3f8-50fb-77c947700e54","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 8, 2024, 8:48:21 AM","createdBy":"DL_65DDA8EBA97EAA0134EEB5DC@global.corp.sap","modifiedDate":"Nov 8, 2024, 8:48:43 AM"},{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+7@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM"}]}'
+ body: '{"value":[{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+2@int.test"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+3@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+4@int.test"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+6@int.test"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+7@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+8@int.test"},{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe+9@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+10@int.test"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+11@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+12@int.test"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+13@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+14@int.test"},{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+15@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+16@int.test"}]}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -457,7 +457,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:27 GMT
+ - Tue, 24 Feb 2026 15:15:16 GMT
Expires:
- "0"
Pragma:
@@ -475,18 +475,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - e7f22681-1fa8-461e-5947-08f67e426230
+ - 73d39821-0cb6-4c06-4c71-dc8d403f5108
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 304.832583ms
+ duration: 396.636833ms
- id: 7
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -499,9 +499,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.10.4 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 0978a546-3120-adf1-dd1a-53ece0580c29
+ - 46390654-6dfb-a619-31c6-a167f93f8b94
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -512,20 +512,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 149
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","refreshToken":"redacted","user":"john.doe@int.test","mail":"john.doe@int.test"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "149"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Thu, 23 Jan 2025 09:41:29 GMT
+ - Tue, 24 Feb 2026 15:15:19 GMT
Expires:
- "0"
Pragma:
@@ -541,9 +541,9 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 32a3d6ba-5973-4c0d-4f58-c7a15035e466
+ - 7e6ef94b-b6a2-4803-651a-5136bb75341d
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 1.475755875s
+ duration: 2.358762043s
diff --git a/btp/provider/fixtures/resource_subaccount.change_to_used_for_production.yaml b/btp/provider/fixtures/resource_subaccount.change_to_used_for_production.yaml
index 894cff2c..73fdbeeb 100644
--- a/btp/provider/fixtures/resource_subaccount.change_to_used_for_production.yaml
+++ b/btp/provider/fixtures/resource_subaccount.change_to_used_for_production.yaml
@@ -6,7 +6,7 @@ interactions:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -21,7 +21,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 99c1e92e-35c7-638d-337d-b9aff8a979c8
+ - 287ab0f7-cd29-37a2-ca0b-3747d3766241
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -32,20 +32,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:06:08 GMT
+ - Tue, 03 Mar 2026 14:22:47 GMT
Expires:
- "0"
Pragma:
@@ -61,18 +61,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 6e56db8b-26ff-4e39-6c39-2828a00f32ad
+ - 8a6beca0-7f8d-4bd9-5b40-023309c910b4
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 510.396251ms
+ duration: 1.081728458s
- id: 1
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -87,7 +87,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - b16332bb-000a-2484-04d1-b7374c5fe5e1
+ - a61f0a5a-5c5c-7efe-3744-7b664c78fe73
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -98,20 +98,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:06:12 GMT
+ - Tue, 03 Mar 2026 14:22:48 GMT
Expires:
- "0"
Pragma:
@@ -127,12 +127,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 9b918d3e-a3ce-45dd-7cd5-c8d762f71800
+ - a10ef29f-cfc4-4cfb-52ee-f87df13d8579
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 3.74094521s
+ duration: 279.053334ms
- id: 2
request:
proto: HTTP/1.1
@@ -153,7 +153,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - f05a3823-7180-50da-06fb-83520384050a
+ - c3b543f5-be81-de67-d8a5-757f5843fff3
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -172,7 +172,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5221c5a9-589b-4033-a139-4282a9eac722","technicalName":"N\/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"STARTED","createdDate":"Feb 18, 2026, 6:06:12 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:06:12 AM","contractStatus":"ACTIVE","jobId":"23893559"}'
+ body: '{"guid":"cb40d992-8efb-4070-8ce1-d201d534ce32","technicalName":"N\/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"STARTED","createdDate":"Mar 3, 2026, 2:22:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:22:48 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test","jobId":"24061180"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -181,7 +181,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:06:12 GMT
+ - Tue, 03 Mar 2026 14:22:48 GMT
Expires:
- "0"
Pragma:
@@ -199,12 +199,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 5ab97128-0627-4028-6c06-90189c1d73fc
+ - d6644330-699f-481d-6cee-440603ab34b2
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 608.015417ms
+ duration: 472.942167ms
- id: 3
request:
proto: HTTP/1.1
@@ -217,7 +217,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5221c5a9-589b-4033-a139-4282a9eac722"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"cb40d992-8efb-4070-8ce1-d201d534ce32"}}
form: {}
headers:
Content-Type:
@@ -225,7 +225,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 4c9ea8ed-9317-1dd3-241a-5cefdce78849
+ - b49e98b2-a88f-f2cd-b28e-caa2b87b1360
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -244,7 +244,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5221c5a9-589b-4033-a139-4282a9eac722","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Feb 18, 2026, 6:06:12 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:06:13 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"cb40d992-8efb-4070-8ce1-d201d534ce32","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Mar 3, 2026, 2:22:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:22:49 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -253,7 +253,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:06:17 GMT
+ - Tue, 03 Mar 2026 14:22:53 GMT
Expires:
- "0"
Pragma:
@@ -271,12 +271,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - c1e7870e-2b0b-4903-7367-5bb5112d5679
+ - 17556e0a-b0f7-4011-45bb-01e6d32d9c17
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 293.418459ms
+ duration: 103.592334ms
- id: 4
request:
proto: HTTP/1.1
@@ -289,7 +289,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5221c5a9-589b-4033-a139-4282a9eac722"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"cb40d992-8efb-4070-8ce1-d201d534ce32"}}
form: {}
headers:
Content-Type:
@@ -297,7 +297,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 00cbcef1-ea49-eed7-7815-fc851e0a6ffb
+ - e13b7429-033b-7497-e212-1b7e438ce117
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -316,7 +316,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5221c5a9-589b-4033-a139-4282a9eac722","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Feb 18, 2026, 6:06:12 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:06:13 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"cb40d992-8efb-4070-8ce1-d201d534ce32","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Mar 3, 2026, 2:22:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:22:49 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -325,7 +325,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:06:23 GMT
+ - Tue, 03 Mar 2026 14:22:58 GMT
Expires:
- "0"
Pragma:
@@ -343,12 +343,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - a68574cb-93ca-42fb-66c6-2191c2d05c3b
+ - 6eb652a2-32c0-49b2-486e-5487dd209382
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 318.988834ms
+ duration: 76.3815ms
- id: 5
request:
proto: HTTP/1.1
@@ -361,7 +361,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5221c5a9-589b-4033-a139-4282a9eac722"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"cb40d992-8efb-4070-8ce1-d201d534ce32"}}
form: {}
headers:
Content-Type:
@@ -369,7 +369,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - fd8ee792-34ee-324c-8d02-f402d1af4881
+ - b61923ee-b5ab-b2b9-4896-dc10a1f25550
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -388,7 +388,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5221c5a9-589b-4033-a139-4282a9eac722","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Feb 18, 2026, 6:06:12 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:06:13 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"cb40d992-8efb-4070-8ce1-d201d534ce32","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Mar 3, 2026, 2:22:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:22:49 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -397,7 +397,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:06:33 GMT
+ - Tue, 03 Mar 2026 14:23:09 GMT
Expires:
- "0"
Pragma:
@@ -415,12 +415,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 17cf6983-f693-49cd-7aee-cacb3072ac4c
+ - 8eddd50e-9fa8-4eca-44d1-d0dfed79745c
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 301.834708ms
+ duration: 118.573834ms
- id: 6
request:
proto: HTTP/1.1
@@ -433,7 +433,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5221c5a9-589b-4033-a139-4282a9eac722"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"cb40d992-8efb-4070-8ce1-d201d534ce32"}}
form: {}
headers:
Content-Type:
@@ -441,7 +441,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - c0b4006a-0e1b-e193-1227-0994e50aba10
+ - 7ab1447b-7507-809a-346c-352722a449de
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -460,7 +460,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5221c5a9-589b-4033-a139-4282a9eac722","technicalName":"5221c5a9-589b-4033-a139-4282a9eac722","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:06:12 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:06:42 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"cb40d992-8efb-4070-8ce1-d201d534ce32","technicalName":"cb40d992-8efb-4070-8ce1-d201d534ce32","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Assigning entitlements for subaccount.","createdDate":"Mar 3, 2026, 2:22:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:23:13 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -469,7 +469,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:06:43 GMT
+ - Tue, 03 Mar 2026 14:23:19 GMT
Expires:
- "0"
Pragma:
@@ -487,18 +487,90 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 1e346545-e345-4821-42ec-501edfe72c6b
+ - 78a4c907-8f2b-43a0-4e33-b0f9ce6b1f42
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 295.382792ms
+ duration: 169.676334ms
- id: 7
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 107
+ transfer_encoding: []
+ trailer: {}
+ host: canary.cli.btp.int.sap
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"cb40d992-8efb-4070-8ce1-d201d534ce32"}}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Terraform/1.14.5 terraform-provider-btp/dev
+ X-Correlationid:
+ - 1e6fbc06-cd22-181d-dede-c64872eb086b
+ X-Cpcli-Customidp:
+ - identityProvider
+ X-Cpcli-Format:
+ - json
+ X-Cpcli-Sessionid:
+ - redacted
+ X-Cpcli-Subdomain:
+ - terraformintcanary
+ url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?get
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"guid":"cb40d992-8efb-4070-8ce1-d201d534ce32","technicalName":"cb40d992-8efb-4070-8ce1-d201d534ce32","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:22:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:23:21 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
+ headers:
+ Cache-Control:
+ - no-cache, no-store, max-age=0, must-revalidate
+ Content-Security-Policy:
+ - default-src 'self'
+ Content-Type:
+ - application/json
+ Date:
+ - Tue, 03 Mar 2026 14:23:29 GMT
+ Expires:
+ - "0"
+ Pragma:
+ - no-cache
+ Referrer-Policy:
+ - no-referrer
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload;
+ X-Content-Type-Options:
+ - nosniff
+ X-Cpcli-Backend-Mediatype:
+ - application/json;charset=UTF-8
+ X-Cpcli-Backend-Status:
+ - "200"
+ X-Frame-Options:
+ - DENY
+ X-Vcap-Request-Id:
+ - 0f6af3d7-a04e-4d6f-5076-ed3ce2c2d730
+ X-Xss-Protection:
+ - "1"
+ status: 200 OK
+ code: 200
+ duration: 84.020584ms
+ - id: 8
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -513,7 +585,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 343df805-e388-fdac-49f1-fc7c2e9e033d
+ - 72ee6f8b-dc9d-16be-4f11-c7ca32dcce06
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -524,20 +596,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:06:47 GMT
+ - Tue, 03 Mar 2026 14:23:29 GMT
Expires:
- "0"
Pragma:
@@ -553,18 +625,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 7979a726-7bb9-4f34-4706-16ace29abe07
+ - 5d5f2c16-88ca-4dcc-7773-da2b461c32ad
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 3.108915835s
- - id: 8
+ duration: 380.111333ms
+ - id: 9
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -579,7 +651,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 425430d7-ef19-6b78-db89-805534637393
+ - bc14de6a-eb64-3c98-287c-bb9e119e609c
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -590,20 +662,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:06:47 GMT
+ - Tue, 03 Mar 2026 14:23:30 GMT
Expires:
- "0"
Pragma:
@@ -619,13 +691,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - c6c2ffee-9196-40fb-7c04-d63869f0fb0e
+ - 1c8af24a-2d3d-462c-681e-866248efeaf3
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 430.76925ms
- - id: 9
+ duration: 541.443584ms
+ - id: 10
request:
proto: HTTP/1.1
proto_major: 1
@@ -637,7 +709,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5221c5a9-589b-4033-a139-4282a9eac722"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"cb40d992-8efb-4070-8ce1-d201d534ce32"}}
form: {}
headers:
Content-Type:
@@ -645,7 +717,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 1a9d4059-42c1-9c17-2b47-28635a88b6c9
+ - 071463ae-6325-867a-665f-723ac83b572c
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -664,7 +736,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5221c5a9-589b-4033-a139-4282a9eac722","technicalName":"5221c5a9-589b-4033-a139-4282a9eac722","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:06:12 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:06:42 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"cb40d992-8efb-4070-8ce1-d201d534ce32","technicalName":"cb40d992-8efb-4070-8ce1-d201d534ce32","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:22:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:23:21 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -673,7 +745,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:06:48 GMT
+ - Tue, 03 Mar 2026 14:23:30 GMT
Expires:
- "0"
Pragma:
@@ -691,18 +763,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 14bc91d0-dc34-4cbc-5f79-84b8ba006d86
+ - 1bc99e49-a507-423b-5409-c6ab355b3b98
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 437.421751ms
- - id: 10
+ duration: 344.352417ms
+ - id: 11
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -717,7 +789,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 8e5aca5c-b76d-03d1-fc62-f10aa51af01c
+ - f16c7c1f-fa92-3fd3-18a3-0559e42df89b
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -728,20 +800,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:06:50 GMT
+ - Tue, 03 Mar 2026 14:23:31 GMT
Expires:
- "0"
Pragma:
@@ -757,13 +829,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 31ff54b6-4f00-4723-5e2c-a3c5c3a9d65c
+ - 6f852eef-d7c6-40d2-54d8-4d4f249447cf
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 2.603288002s
- - id: 11
+ duration: 382.41475ms
+ - id: 12
request:
proto: HTTP/1.1
proto_major: 1
@@ -775,7 +847,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5221c5a9-589b-4033-a139-4282a9eac722"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"cb40d992-8efb-4070-8ce1-d201d534ce32"}}
form: {}
headers:
Content-Type:
@@ -783,7 +855,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - b3596c34-54e4-8954-adb5-1141d7b79410
+ - 6bed944a-0f9c-386f-44c0-53417f4dedeb
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -802,7 +874,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5221c5a9-589b-4033-a139-4282a9eac722","technicalName":"5221c5a9-589b-4033-a139-4282a9eac722","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:06:12 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:06:42 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"cb40d992-8efb-4070-8ce1-d201d534ce32","technicalName":"cb40d992-8efb-4070-8ce1-d201d534ce32","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:22:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:23:21 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -811,7 +883,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:06:51 GMT
+ - Tue, 03 Mar 2026 14:23:31 GMT
Expires:
- "0"
Pragma:
@@ -829,18 +901,82 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 3bc85dee-3364-4906-41f4-bd78736f365d
+ - 9bfe6e7d-2df1-4e89-6698-d83931f2e2b3
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 397.451916ms
- - id: 12
+ duration: 169.253001ms
+ - id: 13
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 118
+ transfer_encoding: []
+ trailer: {}
+ host: canary.cli.btp.int.sap
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Terraform/1.14.5 terraform-provider-btp/dev
+ X-Correlationid:
+ - 1471846f-5e9e-ad99-0475-57ca4ba28fc3
+ X-Cpcli-Format:
+ - json
+ url: https://canary.cli.btp.int.sap/login/v2.97.0
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 0
+ uncompressed: false
+ body: ""
+ headers:
+ Cache-Control:
+ - no-cache, no-store, max-age=0, must-revalidate
+ Content-Length:
+ - "0"
+ Content-Security-Policy:
+ - default-src 'self'
+ Date:
+ - Tue, 03 Mar 2026 14:23:51 GMT
+ Expires:
+ - "0"
+ Pragma:
+ - no-cache
+ Referrer-Policy:
+ - no-referrer
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload;
+ X-Content-Type-Options:
+ - nosniff
+ X-Cpcli-Server-Message:
+ - A timeout was reached while preparing the command execution. The command execution request was not sent to the backend.
+ X-Frame-Options:
+ - DENY
+ X-Vcap-Request-Id:
+ - 0203cbb2-6a13-4032-59d1-ac88bbd1aaac
+ X-Xss-Protection:
+ - "1"
+ status: 504 Gateway Timeout
+ code: 504
+ duration: 20.048458302s
+ - id: 14
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -855,7 +991,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 6226a0f6-73b4-6662-e28b-ce3b82a402ca
+ - 1471846f-5e9e-ad99-0475-57ca4ba28fc3
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -866,20 +1002,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:06:55 GMT
+ - Tue, 03 Mar 2026 14:23:53 GMT
Expires:
- "0"
Pragma:
@@ -895,13 +1031,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 2ba9b1b1-6e5c-43fc-7057-1454fc84e4f1
+ - 50db13a5-0a7c-442a-4761-3c22a2f13d06
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 4.543745044s
- - id: 13
+ duration: 432.757459ms
+ - id: 15
request:
proto: HTTP/1.1
proto_major: 1
@@ -913,7 +1049,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"betaEnabled":"false","directoryID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"Integration Test Acc Dyn","globalAccount":"terraformintcanary","labels":"{}","subaccount":"5221c5a9-589b-4033-a139-4282a9eac722","usedForProduction":"true"}}
+ {"paramValues":{"betaEnabled":"false","directoryID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"Integration Test Acc Dyn","globalAccount":"terraformintcanary","labels":"{}","subaccount":"cb40d992-8efb-4070-8ce1-d201d534ce32","usedForProduction":"true"}}
form: {}
headers:
Content-Type:
@@ -921,7 +1057,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - bacf21c5-990b-6d1f-4a1b-8c22e5fdf323
+ - 5a465a43-21e0-b3ae-7e21-fb01b4f75313
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -940,7 +1076,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5221c5a9-589b-4033-a139-4282a9eac722","technicalName":"5221c5a9-589b-4033-a139-4282a9eac722","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","description":null,"state":"OK","stateMessage":"Subaccount created.","contentAutomationState":null,"contentAutomationStateDetails":null,"createdDate":1771394772577,"createdBy":"john.doe@int.test","modifiedDate":1771394816307,"contractStatus":"ACTIVE"}'
+ body: '{"guid":"cb40d992-8efb-4070-8ce1-d201d534ce32","technicalName":"cb40d992-8efb-4070-8ce1-d201d534ce32","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","description":null,"state":"OK","stateMessage":"Subaccount created.","contentAutomationState":null,"contentAutomationStateDetails":null,"createdDate":1772547768649,"createdBy":"john.doe@int.test","modifiedDate":1772547833331,"contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -949,7 +1085,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:06:56 GMT
+ - Tue, 03 Mar 2026 14:23:53 GMT
Expires:
- "0"
Pragma:
@@ -967,13 +1103,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 47ee9f0e-9de4-49ec-7682-863e7592ede4
+ - abe79c2f-a65e-4b4c-7dda-b341ae96f602
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 663.458583ms
- - id: 14
+ duration: 458.855791ms
+ - id: 16
request:
proto: HTTP/1.1
proto_major: 1
@@ -985,7 +1121,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5221c5a9-589b-4033-a139-4282a9eac722"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"cb40d992-8efb-4070-8ce1-d201d534ce32"}}
form: {}
headers:
Content-Type:
@@ -993,7 +1129,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - f2521e82-02b9-1d4c-df98-a3d85f3fb129
+ - 7a0afa0c-8f89-3d93-c587-03b6b31781f6
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1012,7 +1148,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5221c5a9-589b-4033-a139-4282a9eac722","technicalName":"5221c5a9-589b-4033-a139-4282a9eac722","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:06:12 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:06:56 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"cb40d992-8efb-4070-8ce1-d201d534ce32","technicalName":"cb40d992-8efb-4070-8ce1-d201d534ce32","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:22:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:23:53 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1021,7 +1157,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:07:01 GMT
+ - Tue, 03 Mar 2026 14:23:58 GMT
Expires:
- "0"
Pragma:
@@ -1039,18 +1175,82 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 4e73cc0f-644a-4888-715e-3c2e027bf257
+ - ad3f95f3-45e8-4c39-61e9-9cf258c1f094
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 300.646959ms
- - id: 15
+ duration: 212.217542ms
+ - id: 17
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 118
+ transfer_encoding: []
+ trailer: {}
+ host: canary.cli.btp.int.sap
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Terraform/1.14.5 terraform-provider-btp/dev
+ X-Correlationid:
+ - c4f7a52c-ca86-6896-9be4-f2ed4e9a1b5b
+ X-Cpcli-Format:
+ - json
+ url: https://canary.cli.btp.int.sap/login/v2.97.0
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 0
+ uncompressed: false
+ body: ""
+ headers:
+ Cache-Control:
+ - no-cache, no-store, max-age=0, must-revalidate
+ Content-Length:
+ - "0"
+ Content-Security-Policy:
+ - default-src 'self'
+ Date:
+ - Tue, 03 Mar 2026 14:24:18 GMT
+ Expires:
+ - "0"
+ Pragma:
+ - no-cache
+ Referrer-Policy:
+ - no-referrer
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload;
+ X-Content-Type-Options:
+ - nosniff
+ X-Cpcli-Server-Message:
+ - A timeout was reached while preparing the command execution. The command execution request was not sent to the backend.
+ X-Frame-Options:
+ - DENY
+ X-Vcap-Request-Id:
+ - 150d512c-6455-4658-418a-95345f4ee3a6
+ X-Xss-Protection:
+ - "1"
+ status: 504 Gateway Timeout
+ code: 504
+ duration: 20.298999551s
+ - id: 18
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -1065,7 +1265,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 310b7286-7a66-048e-bb75-b1dd9f092d82
+ - c4f7a52c-ca86-6896-9be4-f2ed4e9a1b5b
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -1076,20 +1276,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:07:04 GMT
+ - Tue, 03 Mar 2026 14:24:20 GMT
Expires:
- "0"
Pragma:
@@ -1105,18 +1305,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - fceaa41d-bea0-4aa1-44ef-fd95d960f195
+ - 10df4858-4cce-4225-54a2-987ecc09260e
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 2.634357127s
- - id: 16
+ duration: 737.073751ms
+ - id: 19
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -1131,7 +1331,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - cf87b4aa-e972-3685-4702-f43a5576eefe
+ - 516f2651-18d7-8ebd-b610-a638c0df3947
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -1142,20 +1342,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:07:04 GMT
+ - Tue, 03 Mar 2026 14:24:25 GMT
Expires:
- "0"
Pragma:
@@ -1171,13 +1371,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - a34da32d-733b-44bd-6656-2c99bb4da822
+ - 42d01708-5c66-4c0b-6937-1169ea86f6d9
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 415.299458ms
- - id: 17
+ duration: 4.548652168s
+ - id: 20
request:
proto: HTTP/1.1
proto_major: 1
@@ -1189,7 +1389,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5221c5a9-589b-4033-a139-4282a9eac722"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"cb40d992-8efb-4070-8ce1-d201d534ce32"}}
form: {}
headers:
Content-Type:
@@ -1197,7 +1397,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 557fa655-2fc1-e0d6-9a4f-b2d55ac998cd
+ - dff31af1-2d54-ea64-b3f0-ef2040ca0e49
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1216,7 +1416,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5221c5a9-589b-4033-a139-4282a9eac722","technicalName":"5221c5a9-589b-4033-a139-4282a9eac722","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:06:12 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:06:56 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"cb40d992-8efb-4070-8ce1-d201d534ce32","technicalName":"cb40d992-8efb-4070-8ce1-d201d534ce32","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:22:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:23:53 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1225,7 +1425,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:07:05 GMT
+ - Tue, 03 Mar 2026 14:24:25 GMT
Expires:
- "0"
Pragma:
@@ -1243,18 +1443,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - ebf027de-10e1-47ca-5eed-88bbfe8e9ad6
+ - fbe76cd2-a9c1-470d-5004-13e298e57095
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 417.534792ms
- - id: 18
+ duration: 194.733959ms
+ - id: 21
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -1269,7 +1469,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - b24f03f6-1c67-9f02-9ea8-b61d83a468a2
+ - 40682b3c-25b3-8dad-bcbb-c516c6f16bb8
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -1280,20 +1480,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 0
uncompressed: false
- body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
+ body: ""
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "0"
Content-Security-Policy:
- default-src 'self'
- Content-Type:
- - application/json
Date:
- - Wed, 18 Feb 2026 06:07:08 GMT
+ - Tue, 03 Mar 2026 14:24:45 GMT
Expires:
- "0"
Pragma:
@@ -1304,23 +1502,23 @@ interactions:
- max-age=31536000; includeSubDomains; preload;
X-Content-Type-Options:
- nosniff
- X-Cpcli-Sessionid:
- - redacted
+ X-Cpcli-Server-Message:
+ - A timeout was reached while preparing the command execution. The command execution request was not sent to the backend.
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - dbc35985-3656-4975-4be6-0e14b063ea79
+ - 8a721929-e8a3-44b1-48f6-eef1f2967e8c
X-Xss-Protection:
- "1"
- status: 200 OK
- code: 200
- duration: 3.370540835s
- - id: 19
+ status: 504 Gateway Timeout
+ code: 504
+ duration: 20.043579676s
+ - id: 22
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -1335,7 +1533,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - e889906b-e72e-e8e8-95c0-6247cdcfea23
+ - 40682b3c-25b3-8dad-bcbb-c516c6f16bb8
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -1346,20 +1544,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:07:09 GMT
+ - Tue, 03 Mar 2026 14:24:52 GMT
Expires:
- "0"
Pragma:
@@ -1375,25 +1573,25 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 9a0331ab-0600-4892-75a3-fea5c5cb53c6
+ - 00507c38-3fc4-49df-40f9-7493a8ce05f8
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 520.273667ms
- - id: 20
+ duration: 5.888833711s
+ - id: 23
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 78
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","showHierarchy":"true"}}
+ {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"}
form: {}
headers:
Content-Type:
@@ -1401,16 +1599,10 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - a60ed6ec-3353-987c-f2ae-771e9394cff5
- X-Cpcli-Customidp:
- - identityProvider
+ - 510d29b8-3f6a-a735-f19c-51a9f7757e37
X-Cpcli-Format:
- json
- X-Cpcli-Sessionid:
- - redacted
- X-Cpcli-Subdomain:
- - terraformintcanary
- url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/global-account?get
+ url: https://canary.cli.btp.int.sap/login/v2.97.0
method: POST
response:
proto: HTTP/2.0
@@ -1418,18 +1610,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: -1
- uncompressed: true
- body: '{"commercialModel":"Subscription","consumptionBased":false,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101000297","useFor":"Testing","origin":"OPERATOR","guid":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"terraform-integration-canary","description":"Global Account for Integration tests for the Terraform provider for SAP BTP on Canary Landscape\nSee https://github.com/SAP/terraform-provider-btp ","createdDate":"May 11, 2023, 8:59:23 AM","modifiedDate":"Feb 10, 2026, 4:55:39 AM","children":[{"guid":"14870944-4832-4e76-83f7-d2913661cf6d","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-se-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 23, 2025, 5:52:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jan 23, 2025, 6:03:51 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"14870944-4832-4e76-83f7-d2913661cf6d","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"customProperties":[{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":"Label text 1"},{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"},{"guid":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-roles","description":"PLEASE DO NOT DELETE!! This dir is used for integration test","createdDate":"Jul 18, 2024, 6:49:00 AM","createdBy":"john.doe+2@int.test","modifiedDate":"Jul 18, 2024, 7:49:40 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"},{"guid":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 27, 2025, 6:50:51 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Jan 29, 2025, 6:17:41 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"},{"guid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements","createdDate":"Oct 6, 2023, 9:57:23 AM","createdBy":"john.doe+4@int.test","modifiedDate":"Feb 17, 2026, 7:48:19 AM","children":[{"guid":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentGuid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGUID":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements-stacked","createdDate":"Oct 6, 2023, 9:58:25 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Oct 6, 2023, 9:58:25 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+6@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"},{"guid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization","createdDate":"May 30, 2025, 2:23:53 PM","createdBy":"john.doe+7@int.test","modifiedDate":"May 30, 2025, 2:24:04 PM","children":[{"guid":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentGuid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization-stacked","createdDate":"May 30, 2025, 2:24:48 PM","createdBy":"john.doe+8@int.test","modifiedDate":"May 30, 2025, 2:24:48 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Directory created.","subdomain":"a9546df7-214e-4414-9191-3d6adfc9cb53","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Global account updated.","subdomain":"terraformintcanary","subaccounts":[{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+9@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+10@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE"},{"guid":"5221c5a9-589b-4033-a139-4282a9eac722","technicalName":"5221c5a9-589b-4033-a139-4282a9eac722","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:06:12 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:06:56 AM","contractStatus":"ACTIVE"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe+11@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+12@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+13@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE"},{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+14@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe+15@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+16@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE"}],"contractStatus":"ACTIVE"}'
+ content_length: 84
+ uncompressed: false
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
+ Content-Length:
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:07:09 GMT
+ - Tue, 03 Mar 2026 14:24:53 GMT
Expires:
- "0"
Pragma:
@@ -1440,32 +1634,30 @@ interactions:
- max-age=31536000; includeSubDomains; preload;
X-Content-Type-Options:
- nosniff
- X-Cpcli-Backend-Mediatype:
- - application/json;charset=UTF-8
- X-Cpcli-Backend-Status:
- - "200"
+ X-Cpcli-Sessionid:
+ - redacted
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - cb577f31-bdcd-44ab-5291-a89acea7063d
+ - 834f9fdb-42e3-4a24-7896-8f8ca2ef5162
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 378.237ms
- - id: 21
+ duration: 335.625751ms
+ - id: 24
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 145
+ content_length: 78
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"confirm":"true","forceDelete":"true","globalAccount":"terraformintcanary","subaccount":"5221c5a9-589b-4033-a139-4282a9eac722"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","showHierarchy":"true"}}
form: {}
headers:
Content-Type:
@@ -1473,7 +1665,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 9a075527-5dcf-3a69-b71d-58028cb012b5
+ - ffee49e0-e6c4-966a-fdc5-e5b439e86c3d
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1482,7 +1674,7 @@ interactions:
- redacted
X-Cpcli-Subdomain:
- terraformintcanary
- url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?delete
+ url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/global-account?get
method: POST
response:
proto: HTTP/2.0
@@ -1492,7 +1684,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"error":"Subaccount is marked as used for production and cannot be deleted with forceDelete=true [Error: 12003/400]"}'
+ body: '{"commercialModel":"Subscription","consumptionBased":false,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101000297","useFor":"Testing","origin":"OPERATOR","guid":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"terraform-integration-canary","description":"Global Account for Integration tests for the Terraform provider for SAP BTP on Canary Landscape\nSee https://github.com/SAP/terraform-provider-btp ","createdDate":"May 11, 2023, 8:59:23 AM","modifiedDate":"Feb 10, 2026, 4:55:39 AM","children":[{"guid":"14870944-4832-4e76-83f7-d2913661cf6d","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-se-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 23, 2025, 5:52:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jan 23, 2025, 6:03:51 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"14870944-4832-4e76-83f7-d2913661cf6d","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"customProperties":[{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":"Label text 1"},{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"},{"guid":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-roles","description":"PLEASE DO NOT DELETE!! This dir is used for integration test","createdDate":"Jul 18, 2024, 6:49:00 AM","createdBy":"john.doe+2@int.test","modifiedDate":"Jul 18, 2024, 7:49:40 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 27, 2025, 6:50:51 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Jan 29, 2025, 6:17:41 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements","createdDate":"Oct 6, 2023, 9:57:23 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 17, 2026, 7:48:19 AM","children":[{"guid":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentGuid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGUID":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements-stacked","createdDate":"Oct 6, 2023, 9:58:25 AM","createdBy":"john.doe@int.test","modifiedDate":"Oct 6, 2023, 9:58:25 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+4@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+5@int.test"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization","createdDate":"May 30, 2025, 2:23:53 PM","createdBy":"john.doe@int.test","modifiedDate":"May 30, 2025, 2:24:04 PM","children":[{"guid":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentGuid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization-stacked","createdDate":"May 30, 2025, 2:24:48 PM","createdBy":"john.doe@int.test","modifiedDate":"May 30, 2025, 2:24:48 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Directory created.","subdomain":"a9546df7-214e-4414-9191-3d6adfc9cb53","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-disaster-revovery","description":"Directory conatining two paired DR subaccounts","createdDate":"Feb 27, 2026, 11:33:23 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:33:23 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"608858ef-5829-4aa6-88e7-0e220ef1aaeb","technicalName":"608858ef-5829-4aa6-88e7-0e220ef1aaeb","displayName":"integration-test-dr-subaccount-eu10-canary","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu10-canary","subdomain":"integration-test-dr-subaccount-eu10-canary-ls0upaxs","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 11:34:09 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:34:29 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"2dc1ecf1-786c-4f92-91f2-26650ab3ad28","technicalName":"2dc1ecf1-786c-4f92-91f2-26650ab3ad28","displayName":"integration-test-dr-to-be-paired-eu12","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-dr-to-be-paired-eu12-8tu9lgxa","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 12:59:03 PM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 12:59:34 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"f59b5902-d24c-446c-b245-92c814faa0d9","technicalName":"f59b5902-d24c-446c-b245-92c814faa0d9","displayName":"integration-test-dr-to-be-paired-eu10-canary","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu10-canary","subdomain":"integration-test-dr-to-be-paired-eu10-canacry-hqhkrthv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 12:58:30 PM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 12:59:17 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"badbcbf8-eca7-4472-9f66-cb9887ba7c3d","technicalName":"badbcbf8-eca7-4472-9f66-cb9887ba7c3d","displayName":"integration-test-dr-subaccount-eu12","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-dr-subaccount-eu12-99p94dot","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 11:34:34 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:34:59 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Global account updated.","subdomain":"terraformintcanary","subaccounts":[{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe+6@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+7@int.test"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+8@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+9@int.test"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+10@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+11@int.test"},{"guid":"b7ed3f66-5b6d-4290-856c-099e9e3cbb1b","technicalName":"b7ed3f66-5b6d-4290-856c-099e9e3cbb1b","displayName":"integration-test-ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-ias-408hsvn1","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test bundled applications on the SAP Cloud Identity Services Provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 8:47:42 AM","createdBy":"john.doe+12@int.test","modifiedDate":"Feb 27, 2026, 8:48:09 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+13@int.test"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+14@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+15@int.test"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+16@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+17@int.test"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+18@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+19@int.test"},{"guid":"cb40d992-8efb-4070-8ce1-d201d534ce32","technicalName":"cb40d992-8efb-4070-8ce1-d201d534ce32","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:22:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:23:53 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+20@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+21@int.test"}],"contractStatus":"ACTIVE"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1501,7 +1693,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:07:10 GMT
+ - Tue, 03 Mar 2026 14:24:53 GMT
Expires:
- "0"
Pragma:
@@ -1513,19 +1705,19 @@ interactions:
X-Content-Type-Options:
- nosniff
X-Cpcli-Backend-Mediatype:
- - application/json
+ - application/json;charset=UTF-8
X-Cpcli-Backend-Status:
- - "400"
+ - "200"
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 3b11152a-51a3-439a-5e3a-da92dfb83a47
+ - d4115b23-c45b-4b79-6170-d0794d1ec1da
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 358.256958ms
- - id: 22
+ duration: 224.756334ms
+ - id: 25
request:
proto: HTTP/1.1
proto_major: 1
@@ -1537,7 +1729,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"confirm":"true","forceDelete":"false","globalAccount":"terraformintcanary","subaccount":"5221c5a9-589b-4033-a139-4282a9eac722"}}
+ {"paramValues":{"confirm":"true","forceDelete":"false","globalAccount":"terraformintcanary","subaccount":"cb40d992-8efb-4070-8ce1-d201d534ce32"}}
form: {}
headers:
Content-Type:
@@ -1545,7 +1737,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 8cf64e7c-ee8b-b969-7d16-2bc27808e2c7
+ - 63a37e8a-d0a9-5e76-6143-833a63400239
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1564,7 +1756,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5221c5a9-589b-4033-a139-4282a9eac722","technicalName":"5221c5a9-589b-4033-a139-4282a9eac722","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Delete subaccount entity","createdDate":"Feb 18, 2026, 6:06:12 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:06:56 AM","contractStatus":"ACTIVE","jobId":"23893564"}'
+ body: '{"guid":"cb40d992-8efb-4070-8ce1-d201d534ce32","technicalName":"cb40d992-8efb-4070-8ce1-d201d534ce32","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Delete subaccount entity","createdDate":"Mar 3, 2026, 2:22:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:23:53 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test","jobId":"24061190"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1573,7 +1765,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:07:10 GMT
+ - Tue, 03 Mar 2026 14:24:53 GMT
Expires:
- "0"
Pragma:
@@ -1591,13 +1783,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - d4c115e3-6534-4df3-60e7-1933d63dbcde
+ - d850c011-abf1-4d51-61e1-97c365b1f955
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 816.869584ms
- - id: 23
+ duration: 443.363417ms
+ - id: 26
request:
proto: HTTP/1.1
proto_major: 1
@@ -1609,7 +1801,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5221c5a9-589b-4033-a139-4282a9eac722"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"cb40d992-8efb-4070-8ce1-d201d534ce32"}}
form: {}
headers:
Content-Type:
@@ -1617,7 +1809,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 80627524-61f1-cb11-f7d7-96edeb42b7be
+ - 727916fc-186c-d281-4947-53d4603f4d5a
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1636,7 +1828,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5221c5a9-589b-4033-a139-4282a9eac722","technicalName":"5221c5a9-589b-4033-a139-4282a9eac722","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Feb 18, 2026, 6:06:12 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:07:11 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"cb40d992-8efb-4070-8ce1-d201d534ce32","technicalName":"cb40d992-8efb-4070-8ce1-d201d534ce32","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:22:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:24:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1645,7 +1837,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:07:16 GMT
+ - Tue, 03 Mar 2026 14:24:58 GMT
Expires:
- "0"
Pragma:
@@ -1663,13 +1855,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - f088e229-0185-49b4-6082-5563e42ff5dd
+ - 261b2be7-aaa8-4d57-5540-d46e4e90a7f5
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 280.489209ms
- - id: 24
+ duration: 96.569667ms
+ - id: 27
request:
proto: HTTP/1.1
proto_major: 1
@@ -1681,7 +1873,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5221c5a9-589b-4033-a139-4282a9eac722"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"cb40d992-8efb-4070-8ce1-d201d534ce32"}}
form: {}
headers:
Content-Type:
@@ -1689,7 +1881,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - e5269d9a-93b6-2f00-c844-b4db9c18e041
+ - 55372abd-4ec4-522e-2ab6-3215e641ff80
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1708,7 +1900,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5221c5a9-589b-4033-a139-4282a9eac722","technicalName":"5221c5a9-589b-4033-a139-4282a9eac722","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Feb 18, 2026, 6:06:12 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:07:11 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"cb40d992-8efb-4070-8ce1-d201d534ce32","technicalName":"cb40d992-8efb-4070-8ce1-d201d534ce32","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:22:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:24:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1717,7 +1909,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:07:21 GMT
+ - Tue, 03 Mar 2026 14:25:03 GMT
Expires:
- "0"
Pragma:
@@ -1735,13 +1927,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - b900d33b-c488-45b1-56a5-2463e10a6dec
+ - b3b2d9c8-e99c-4590-509e-42adc0a48ccf
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 303.836375ms
- - id: 25
+ duration: 84.649125ms
+ - id: 28
request:
proto: HTTP/1.1
proto_major: 1
@@ -1753,7 +1945,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5221c5a9-589b-4033-a139-4282a9eac722"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"cb40d992-8efb-4070-8ce1-d201d534ce32"}}
form: {}
headers:
Content-Type:
@@ -1761,7 +1953,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - bea83f3a-0215-c362-c768-cec92efba452
+ - 44501e88-2ff5-6f5c-0671-75925f446972
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1780,7 +1972,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5221c5a9-589b-4033-a139-4282a9eac722","technicalName":"5221c5a9-589b-4033-a139-4282a9eac722","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Feb 18, 2026, 6:06:12 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:07:11 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"cb40d992-8efb-4070-8ce1-d201d534ce32","technicalName":"cb40d992-8efb-4070-8ce1-d201d534ce32","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:22:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:24:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1789,7 +1981,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:07:31 GMT
+ - Tue, 03 Mar 2026 14:25:13 GMT
Expires:
- "0"
Pragma:
@@ -1807,13 +1999,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - e392b12e-c425-497b-49cb-f696dde641e9
+ - 35961457-477f-43c8-746f-39dba4cfb9b4
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 307.222251ms
- - id: 26
+ duration: 90.137084ms
+ - id: 29
request:
proto: HTTP/1.1
proto_major: 1
@@ -1825,7 +2017,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5221c5a9-589b-4033-a139-4282a9eac722"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"cb40d992-8efb-4070-8ce1-d201d534ce32"}}
form: {}
headers:
Content-Type:
@@ -1833,7 +2025,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - a03c357b-89ff-bab0-ee0b-f2c353d24cdb
+ - fcffe474-3b5e-b61a-7d93-f5449c1d2a83
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1852,7 +2044,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"error":"Subaccount 5221c5a9-589b-4033-a139-4282a9eac722 not found [Error: 20004/404]"}'
+ body: '{"error":"Subaccount cb40d992-8efb-4070-8ce1-d201d534ce32 not found [Error: 20004/404]"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1861,7 +2053,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:07:42 GMT
+ - Tue, 03 Mar 2026 14:25:24 GMT
Expires:
- "0"
Pragma:
@@ -1879,9 +2071,9 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 50625fc6-4a07-4d8e-7bcd-97c98c063a7b
+ - f0b74678-2797-4738-7d1f-413a21e86163
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 339.411084ms
+ duration: 113.31575ms
diff --git a/btp/provider/fixtures/resource_subaccount.full_config.yaml b/btp/provider/fixtures/resource_subaccount.full_config.yaml
index 410126b8..9f0e4e24 100644
--- a/btp/provider/fixtures/resource_subaccount.full_config.yaml
+++ b/btp/provider/fixtures/resource_subaccount.full_config.yaml
@@ -6,7 +6,7 @@ interactions:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -21,7 +21,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 78c32bef-6f4d-459a-19b3-370f7da367f3
+ - bd929ee2-a093-f37f-cd3e-8108790a2db1
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -32,20 +32,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:07:45 GMT
+ - Tue, 03 Mar 2026 14:30:59 GMT
Expires:
- "0"
Pragma:
@@ -61,18 +61,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 07d5c6e8-6041-4038-47ff-ad0da0089259
+ - 82f3d946-d2da-41d3-4b7c-e5c04c5fcca4
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 2.644350043s
+ duration: 744.288ms
- id: 1
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -87,7 +87,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - e644647d-40a2-bc3a-6352-0cec974abdbc
+ - f4b7ff23-9ffc-4774-2e62-141d52e8d80b
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -98,20 +98,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:07:45 GMT
+ - Tue, 03 Mar 2026 14:31:00 GMT
Expires:
- "0"
Pragma:
@@ -127,12 +127,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - ac8ab8b7-c379-46de-69d8-e7e7edb2f04a
+ - 7c1f4066-5df4-459f-49dd-eead03327bb2
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 455.499083ms
+ duration: 364.36925ms
- id: 2
request:
proto: HTTP/1.1
@@ -153,7 +153,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 9bf28036-1bdb-7ac9-a19d-598d7d488479
+ - b06c81dc-57c5-cda9-5700-ea2d51244a6f
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -172,7 +172,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"d0fe61dc-2738-490a-b14f-e7f70588e145","technicalName":"N\/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"STARTED","customProperties":[{"accountGUID":"d0fe61dc-2738-490a-b14f-e7f70588e145","key":"redacted","value":"bar"}],"labels":{"foo":["bar"]},"createdDate":"Feb 18, 2026, 6:07:46 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:07:46 AM","contractStatus":"ACTIVE","jobId":"23893566"}'
+ body: '{"guid":"8cd02222-7327-42c4-a428-bd9bcdcee88b","technicalName":"N\/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"STARTED","customProperties":[{"accountGUID":"8cd02222-7327-42c4-a428-bd9bcdcee88b","key":"redacted","value":"bar"}],"labels":{"foo":["bar"]},"createdDate":"Mar 3, 2026, 2:31:00 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:31:00 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test","jobId":"24061229"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -181,7 +181,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:07:46 GMT
+ - Tue, 03 Mar 2026 14:31:00 GMT
Expires:
- "0"
Pragma:
@@ -199,12 +199,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - b2009730-9515-4573-5a22-b2ea872dee3b
+ - 351dc580-8b98-403a-7fba-e3496a269d65
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 615.780167ms
+ duration: 483.652167ms
- id: 3
request:
proto: HTTP/1.1
@@ -217,7 +217,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"d0fe61dc-2738-490a-b14f-e7f70588e145"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"8cd02222-7327-42c4-a428-bd9bcdcee88b"}}
form: {}
headers:
Content-Type:
@@ -225,7 +225,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 39a302d0-0979-5ce2-7195-db2ebf2332d8
+ - 571da747-f638-1b74-8efc-bc13c326c297
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -244,7 +244,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"d0fe61dc-2738-490a-b14f-e7f70588e145","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"CREATING","stateMessage":"Creating subaccount tenant.","customProperties":[{"accountGUID":"d0fe61dc-2738-490a-b14f-e7f70588e145","key":"redacted","value":"bar"}],"labels":{"foo":["bar"]},"createdDate":"Feb 18, 2026, 6:07:46 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:07:47 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"8cd02222-7327-42c4-a428-bd9bcdcee88b","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"CREATING","stateMessage":"Creating subaccount tenant.","customProperties":[{"accountGUID":"8cd02222-7327-42c4-a428-bd9bcdcee88b","key":"redacted","value":"bar"}],"labels":{"foo":["bar"]},"createdDate":"Mar 3, 2026, 2:31:00 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:31:02 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -253,7 +253,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:07:51 GMT
+ - Tue, 03 Mar 2026 14:31:05 GMT
Expires:
- "0"
Pragma:
@@ -271,12 +271,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - b9f501bb-7ad7-4a85-48c0-c7d40da5edd6
+ - 1743029a-9f6e-4096-750f-62db48568250
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 310.415125ms
+ duration: 85.637334ms
- id: 4
request:
proto: HTTP/1.1
@@ -289,7 +289,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"d0fe61dc-2738-490a-b14f-e7f70588e145"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"8cd02222-7327-42c4-a428-bd9bcdcee88b"}}
form: {}
headers:
Content-Type:
@@ -297,7 +297,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - cfc5a91f-119a-52c4-bd4d-f203cbf017b7
+ - ab235aed-a963-fd42-550e-d097c4d50f05
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -316,7 +316,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"d0fe61dc-2738-490a-b14f-e7f70588e145","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"CREATING","stateMessage":"Creating subaccount tenant.","customProperties":[{"accountGUID":"d0fe61dc-2738-490a-b14f-e7f70588e145","key":"redacted","value":"bar"}],"labels":{"foo":["bar"]},"createdDate":"Feb 18, 2026, 6:07:46 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:07:47 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"8cd02222-7327-42c4-a428-bd9bcdcee88b","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"CREATING","stateMessage":"Creating subaccount tenant.","customProperties":[{"accountGUID":"8cd02222-7327-42c4-a428-bd9bcdcee88b","key":"redacted","value":"bar"}],"labels":{"foo":["bar"]},"createdDate":"Mar 3, 2026, 2:31:00 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:31:02 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -325,7 +325,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:07:56 GMT
+ - Tue, 03 Mar 2026 14:31:10 GMT
Expires:
- "0"
Pragma:
@@ -343,12 +343,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 31254b5e-1a06-4a30-7eca-c747d17fb2d6
+ - 46878bf3-dca4-4660-754c-ee592fd6e370
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 347.338001ms
+ duration: 129.015ms
- id: 5
request:
proto: HTTP/1.1
@@ -361,7 +361,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"d0fe61dc-2738-490a-b14f-e7f70588e145"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"8cd02222-7327-42c4-a428-bd9bcdcee88b"}}
form: {}
headers:
Content-Type:
@@ -369,7 +369,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - e5b526ef-1c21-d152-cf03-6fe67ab78fff
+ - eaf4daa6-b35a-4b67-62b6-52010563decf
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -388,7 +388,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"d0fe61dc-2738-490a-b14f-e7f70588e145","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"CREATING","stateMessage":"Creating subaccount tenant.","customProperties":[{"accountGUID":"d0fe61dc-2738-490a-b14f-e7f70588e145","key":"redacted","value":"bar"}],"labels":{"foo":["bar"]},"createdDate":"Feb 18, 2026, 6:07:46 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:07:47 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"8cd02222-7327-42c4-a428-bd9bcdcee88b","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"CREATING","stateMessage":"Creating subaccount tenant.","customProperties":[{"accountGUID":"8cd02222-7327-42c4-a428-bd9bcdcee88b","key":"redacted","value":"bar"}],"labels":{"foo":["bar"]},"createdDate":"Mar 3, 2026, 2:31:00 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:31:02 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -397,7 +397,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:08:07 GMT
+ - Tue, 03 Mar 2026 14:31:21 GMT
Expires:
- "0"
Pragma:
@@ -415,12 +415,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - fc874e4b-28f1-468f-6847-4575936bc779
+ - 357764f0-0d92-4148-6dbb-e5f954db41c8
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 336.995584ms
+ duration: 118.762375ms
- id: 6
request:
proto: HTTP/1.1
@@ -433,7 +433,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"d0fe61dc-2738-490a-b14f-e7f70588e145"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"8cd02222-7327-42c4-a428-bd9bcdcee88b"}}
form: {}
headers:
Content-Type:
@@ -441,7 +441,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 1d406ad9-76d0-179a-2941-26375af8bfa3
+ - 60c3a995-cd9f-24da-3f07-ecf2d20c35c9
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -460,7 +460,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"d0fe61dc-2738-490a-b14f-e7f70588e145","technicalName":"d0fe61dc-2738-490a-b14f-e7f70588e145","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"d0fe61dc-2738-490a-b14f-e7f70588e145","key":"redacted","value":"bar"}],"labels":{"foo":["bar"]},"createdDate":"Feb 18, 2026, 6:07:46 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:08:17 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"8cd02222-7327-42c4-a428-bd9bcdcee88b","technicalName":"8cd02222-7327-42c4-a428-bd9bcdcee88b","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"CREATING","stateMessage":"Assigning entitlements for subaccount.","customProperties":[{"accountGUID":"8cd02222-7327-42c4-a428-bd9bcdcee88b","key":"redacted","value":"bar"}],"labels":{"foo":["bar"]},"createdDate":"Mar 3, 2026, 2:31:00 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:31:23 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -469,7 +469,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:08:17 GMT
+ - Tue, 03 Mar 2026 14:31:31 GMT
Expires:
- "0"
Pragma:
@@ -487,18 +487,90 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 48c60fbd-e64d-4955-5f0d-e8c75a1e4bb7
+ - 8d98a778-2cb2-4bd3-78e3-eaf91f81af14
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 302.103459ms
+ duration: 112.883417ms
- id: 7
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 107
+ transfer_encoding: []
+ trailer: {}
+ host: canary.cli.btp.int.sap
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"8cd02222-7327-42c4-a428-bd9bcdcee88b"}}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Terraform/1.14.5 terraform-provider-btp/dev
+ X-Correlationid:
+ - deffa53b-bcd2-a794-5521-3ab803d63c31
+ X-Cpcli-Customidp:
+ - identityProvider
+ X-Cpcli-Format:
+ - json
+ X-Cpcli-Sessionid:
+ - redacted
+ X-Cpcli-Subdomain:
+ - terraformintcanary
+ url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?get
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"guid":"8cd02222-7327-42c4-a428-bd9bcdcee88b","technicalName":"8cd02222-7327-42c4-a428-bd9bcdcee88b","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"8cd02222-7327-42c4-a428-bd9bcdcee88b","key":"redacted","value":"bar"}],"labels":{"foo":["bar"]},"createdDate":"Mar 3, 2026, 2:31:00 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:31:31 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
+ headers:
+ Cache-Control:
+ - no-cache, no-store, max-age=0, must-revalidate
+ Content-Security-Policy:
+ - default-src 'self'
+ Content-Type:
+ - application/json
+ Date:
+ - Tue, 03 Mar 2026 14:31:41 GMT
+ Expires:
+ - "0"
+ Pragma:
+ - no-cache
+ Referrer-Policy:
+ - no-referrer
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload;
+ X-Content-Type-Options:
+ - nosniff
+ X-Cpcli-Backend-Mediatype:
+ - application/json;charset=UTF-8
+ X-Cpcli-Backend-Status:
+ - "200"
+ X-Frame-Options:
+ - DENY
+ X-Vcap-Request-Id:
+ - 86df4c05-05d3-4433-60d1-866a926ed64c
+ X-Xss-Protection:
+ - "1"
+ status: 200 OK
+ code: 200
+ duration: 83.862042ms
+ - id: 8
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -513,7 +585,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - c6ec79ec-3b43-cf42-07f2-d8878eb418a8
+ - 88dd2d94-e924-d5ad-1155-8a4a32bb73fb
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -524,20 +596,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:08:18 GMT
+ - Tue, 03 Mar 2026 14:31:41 GMT
Expires:
- "0"
Pragma:
@@ -553,18 +625,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 3fe70e1d-c870-4f43-440a-d0a4042483e2
+ - 55a23145-e024-4ff2-49af-a28c6d3313c3
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 468.695292ms
- - id: 8
+ duration: 550.16975ms
+ - id: 9
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -579,7 +651,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 737502bb-8a1f-128d-8b7a-3c860f5c7c5e
+ - 66e1cbc5-91a2-f6ee-e245-d961d8eb679d
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -590,20 +662,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:08:22 GMT
+ - Tue, 03 Mar 2026 14:31:42 GMT
Expires:
- "0"
Pragma:
@@ -619,13 +691,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 25535d58-fc1f-4897-5f1b-2e6f562fd5ad
+ - 7d4660f4-5cd1-40fd-4186-6d762a299470
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 3.857838711s
- - id: 9
+ duration: 452.861417ms
+ - id: 10
request:
proto: HTTP/1.1
proto_major: 1
@@ -637,7 +709,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"d0fe61dc-2738-490a-b14f-e7f70588e145"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"8cd02222-7327-42c4-a428-bd9bcdcee88b"}}
form: {}
headers:
Content-Type:
@@ -645,7 +717,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - cefe8eca-b8ce-4685-8e1a-db4050746c81
+ - c5354863-f25a-7f52-8bca-fe766f18d5ca
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -664,7 +736,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"d0fe61dc-2738-490a-b14f-e7f70588e145","technicalName":"d0fe61dc-2738-490a-b14f-e7f70588e145","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"d0fe61dc-2738-490a-b14f-e7f70588e145","key":"redacted","value":"bar"}],"labels":{"foo":["bar"]},"createdDate":"Feb 18, 2026, 6:07:46 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:08:17 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"8cd02222-7327-42c4-a428-bd9bcdcee88b","technicalName":"8cd02222-7327-42c4-a428-bd9bcdcee88b","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"8cd02222-7327-42c4-a428-bd9bcdcee88b","key":"redacted","value":"bar"}],"labels":{"foo":["bar"]},"createdDate":"Mar 3, 2026, 2:31:00 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:31:31 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -673,7 +745,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:08:22 GMT
+ - Tue, 03 Mar 2026 14:31:42 GMT
Expires:
- "0"
Pragma:
@@ -691,18 +763,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - fd1f6a6f-a0f3-4561-5e45-381dd64ab307
+ - 6cf8e138-31a9-4c6c-7639-073c74f50ef3
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 504.050625ms
- - id: 10
+ duration: 211.118876ms
+ - id: 11
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -717,7 +789,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - dfc55d44-d1fc-d4b0-6171-43e9501a5c84
+ - 921e0ec5-fd34-38d3-23b2-acdb83ec057e
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -728,20 +800,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:08:25 GMT
+ - Tue, 03 Mar 2026 14:31:43 GMT
Expires:
- "0"
Pragma:
@@ -757,13 +829,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - d77d0327-1adb-4e1c-7619-a2b2f73d8d25
+ - cf283346-2aae-4a50-7bb0-386a1bd915eb
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 3.109558626s
- - id: 11
+ duration: 315.712333ms
+ - id: 12
request:
proto: HTTP/1.1
proto_major: 1
@@ -775,7 +847,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"d0fe61dc-2738-490a-b14f-e7f70588e145"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"8cd02222-7327-42c4-a428-bd9bcdcee88b"}}
form: {}
headers:
Content-Type:
@@ -783,7 +855,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 00322bf2-7e36-ba0c-a3de-c39a9f95a985
+ - c55d635e-e119-a7d2-1a57-95d89a3edf2d
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -802,7 +874,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"d0fe61dc-2738-490a-b14f-e7f70588e145","technicalName":"d0fe61dc-2738-490a-b14f-e7f70588e145","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"d0fe61dc-2738-490a-b14f-e7f70588e145","key":"redacted","value":"bar"}],"labels":{"foo":["bar"]},"createdDate":"Feb 18, 2026, 6:07:46 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:08:17 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"8cd02222-7327-42c4-a428-bd9bcdcee88b","technicalName":"8cd02222-7327-42c4-a428-bd9bcdcee88b","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"8cd02222-7327-42c4-a428-bd9bcdcee88b","key":"redacted","value":"bar"}],"labels":{"foo":["bar"]},"createdDate":"Mar 3, 2026, 2:31:00 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:31:31 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -811,7 +883,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:08:26 GMT
+ - Tue, 03 Mar 2026 14:31:43 GMT
Expires:
- "0"
Pragma:
@@ -829,18 +901,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 3bd5aee7-a1e0-4c04-4229-0456aa67abdf
+ - e96830aa-9561-42c3-63e3-81218070fe5c
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 429.46125ms
- - id: 12
+ duration: 393.2145ms
+ - id: 13
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -855,7 +927,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 6bb66890-d404-0727-2e53-3ae12bb2e585
+ - 3c78947d-73c6-f450-a993-dbfe747f5445
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -866,20 +938,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:08:26 GMT
+ - Tue, 03 Mar 2026 14:31:43 GMT
Expires:
- "0"
Pragma:
@@ -895,13 +967,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - e76d0f6c-c7ca-4c68-5b2c-54ae2c1e6338
+ - 9cb6310c-e760-45f9-6780-aec9befd7a9f
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 433.537583ms
- - id: 13
+ duration: 319.918458ms
+ - id: 14
request:
proto: HTTP/1.1
proto_major: 1
@@ -913,7 +985,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"betaEnabled":"true","description":"My subaccount description","directoryID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"Integration Test Acc Dyn","globalAccount":"terraformintcanary","labels":"{}","subaccount":"d0fe61dc-2738-490a-b14f-e7f70588e145","usedForProduction":"false"}}
+ {"paramValues":{"betaEnabled":"true","description":"My subaccount description","directoryID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"Integration Test Acc Dyn","globalAccount":"terraformintcanary","labels":"{}","subaccount":"8cd02222-7327-42c4-a428-bd9bcdcee88b","usedForProduction":"false"}}
form: {}
headers:
Content-Type:
@@ -921,7 +993,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 2c1023b5-42f4-b665-3338-b25cc1285b8a
+ - dbea3b3d-4771-52bc-7dca-9d7ce4c28045
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -940,7 +1012,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"d0fe61dc-2738-490a-b14f-e7f70588e145","technicalName":"d0fe61dc-2738-490a-b14f-e7f70588e145","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"OK","stateMessage":"Subaccount created.","contentAutomationState":null,"contentAutomationStateDetails":null,"createdDate":1771394866137,"createdBy":"john.doe@int.test","modifiedDate":1771394907190,"contractStatus":"ACTIVE"}'
+ body: '{"guid":"8cd02222-7327-42c4-a428-bd9bcdcee88b","technicalName":"8cd02222-7327-42c4-a428-bd9bcdcee88b","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"OK","stateMessage":"Subaccount created.","contentAutomationState":null,"contentAutomationStateDetails":null,"createdDate":1772548260635,"createdBy":"john.doe@int.test","modifiedDate":1772548304230,"contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -949,7 +1021,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:08:27 GMT
+ - Tue, 03 Mar 2026 14:31:44 GMT
Expires:
- "0"
Pragma:
@@ -967,13 +1039,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - dbb4ba4a-653d-461c-617b-e6fb5d0f8c2d
+ - 7769a39c-14af-4df5-78e2-2cca637a1116
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 658.467334ms
- - id: 14
+ duration: 718.265667ms
+ - id: 15
request:
proto: HTTP/1.1
proto_major: 1
@@ -985,7 +1057,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"d0fe61dc-2738-490a-b14f-e7f70588e145"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"8cd02222-7327-42c4-a428-bd9bcdcee88b"}}
form: {}
headers:
Content-Type:
@@ -993,7 +1065,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - cdaedc59-0ea1-da85-3241-181283fe1a02
+ - 84c50fec-bfb8-16f7-a0e3-9fe03334d68d
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1012,7 +1084,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"d0fe61dc-2738-490a-b14f-e7f70588e145","technicalName":"d0fe61dc-2738-490a-b14f-e7f70588e145","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:07:46 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:08:27 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"8cd02222-7327-42c4-a428-bd9bcdcee88b","technicalName":"8cd02222-7327-42c4-a428-bd9bcdcee88b","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:31:00 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:31:44 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1021,7 +1093,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:08:32 GMT
+ - Tue, 03 Mar 2026 14:31:49 GMT
Expires:
- "0"
Pragma:
@@ -1039,18 +1111,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - d5b50fdc-95dd-4590-50f6-2536b7d9659f
+ - 61d292dc-8a82-4b28-62f0-3be3c6c264a5
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 294.697458ms
- - id: 15
+ duration: 93.704167ms
+ - id: 16
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -1065,7 +1137,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - a6f39718-7634-0001-074b-62f9079c1be3
+ - 3aed4958-09de-e2fa-58d3-192ac2435888
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -1076,20 +1148,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:08:34 GMT
+ - Tue, 03 Mar 2026 14:31:50 GMT
Expires:
- "0"
Pragma:
@@ -1105,18 +1177,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 8c780abd-6a92-49b7-4308-be0f6cad46f0
+ - ee4cf8a4-e960-4e42-7e0e-5bd348f19015
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 1.674935793s
- - id: 16
+ duration: 626.05225ms
+ - id: 17
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -1131,7 +1203,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 844bb160-0f7e-3dd6-a725-6471bdfae5e5
+ - 9ac6da28-8a38-c434-2009-d3f45b639e87
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -1142,20 +1214,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:08:34 GMT
+ - Tue, 03 Mar 2026 14:31:50 GMT
Expires:
- "0"
Pragma:
@@ -1171,13 +1243,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - b61164d6-52b8-4e51-738b-0b9ee5f661d9
+ - 96174e36-12b6-4c4d-443d-a6085126b531
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 431.737542ms
- - id: 17
+ duration: 466.329708ms
+ - id: 18
request:
proto: HTTP/1.1
proto_major: 1
@@ -1189,7 +1261,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"d0fe61dc-2738-490a-b14f-e7f70588e145"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"8cd02222-7327-42c4-a428-bd9bcdcee88b"}}
form: {}
headers:
Content-Type:
@@ -1197,7 +1269,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - eeb3637c-233b-1ecc-c09f-c77981f3c1af
+ - 6921ada2-b8a1-f140-a4a4-49d5e17dbb69
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1216,7 +1288,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"d0fe61dc-2738-490a-b14f-e7f70588e145","technicalName":"d0fe61dc-2738-490a-b14f-e7f70588e145","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:07:46 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:08:27 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"8cd02222-7327-42c4-a428-bd9bcdcee88b","technicalName":"8cd02222-7327-42c4-a428-bd9bcdcee88b","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:31:00 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:31:44 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1225,7 +1297,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:08:35 GMT
+ - Tue, 03 Mar 2026 14:31:51 GMT
Expires:
- "0"
Pragma:
@@ -1243,18 +1315,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 4a294a0e-c6f3-456d-512c-ee7e8b33c191
+ - fdc3a377-b5f6-4bd3-437b-501b886f5330
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 413.123042ms
- - id: 18
+ duration: 183.707459ms
+ - id: 19
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -1269,7 +1341,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - fd96c7ba-27ac-bbc9-0ef2-28cf98766dfb
+ - 0736cadb-b24c-e0df-3198-c403139528eb
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -1280,20 +1352,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:08:39 GMT
+ - Tue, 03 Mar 2026 14:31:51 GMT
Expires:
- "0"
Pragma:
@@ -1309,13 +1381,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - a00a69c7-7eaf-4293-48ab-5bcc1fd34fed
+ - 50b86e6f-76eb-4535-498a-980caea6f9c1
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 3.957744043s
- - id: 19
+ duration: 428.647958ms
+ - id: 20
request:
proto: HTTP/1.1
proto_major: 1
@@ -1327,7 +1399,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"d0fe61dc-2738-490a-b14f-e7f70588e145"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"8cd02222-7327-42c4-a428-bd9bcdcee88b"}}
form: {}
headers:
Content-Type:
@@ -1335,7 +1407,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 81a567ac-de45-1c66-5648-ccd91952d4f2
+ - ff69a087-a913-7d5c-dbb6-985a05102f51
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1354,7 +1426,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"d0fe61dc-2738-490a-b14f-e7f70588e145","technicalName":"d0fe61dc-2738-490a-b14f-e7f70588e145","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:07:46 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:08:27 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"8cd02222-7327-42c4-a428-bd9bcdcee88b","technicalName":"8cd02222-7327-42c4-a428-bd9bcdcee88b","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:31:00 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:31:44 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1363,7 +1435,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:08:39 GMT
+ - Tue, 03 Mar 2026 14:31:51 GMT
Expires:
- "0"
Pragma:
@@ -1381,18 +1453,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 8b1135b6-78e9-4220-70dc-4ae0f43af6ac
+ - efcc8460-5916-4114-693c-2130b656ff18
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 415.818041ms
- - id: 20
+ duration: 148.314834ms
+ - id: 21
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -1407,7 +1479,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 96ea7f06-f52e-e44c-07f8-fc901daa9679
+ - 6f77d77f-ce34-fe71-6930-6b625f6b1619
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -1418,20 +1490,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:08:43 GMT
+ - Tue, 03 Mar 2026 14:31:52 GMT
Expires:
- "0"
Pragma:
@@ -1447,18 +1519,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 73c88e55-69d3-4f85-72ca-873345aa91cb
+ - 0b55138f-2b24-48d0-7682-4c8d8c38eb57
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 3.383684043s
- - id: 21
+ duration: 351.920083ms
+ - id: 22
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -1473,7 +1545,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 10e5531c-f238-f6a5-5693-814b22019fd5
+ - 3d008025-a7f4-48f4-168a-11b277840315
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -1484,20 +1556,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:08:43 GMT
+ - Tue, 03 Mar 2026 14:31:52 GMT
Expires:
- "0"
Pragma:
@@ -1513,13 +1585,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 3cea26ce-f223-4691-5e61-8533d2a50149
+ - 0e9b886e-1b6b-4fb0-60ca-1508eab6ba6c
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 397.051334ms
- - id: 22
+ duration: 481.547584ms
+ - id: 23
request:
proto: HTTP/1.1
proto_major: 1
@@ -1539,7 +1611,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - c87e795e-9f73-7c8c-dcab-1d6e9adcd343
+ - f7f8c95d-8d48-fd22-f876-083c240e98f1
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1558,7 +1630,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"commercialModel":"Subscription","consumptionBased":false,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101000297","useFor":"Testing","origin":"OPERATOR","guid":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"terraform-integration-canary","description":"Global Account for Integration tests for the Terraform provider for SAP BTP on Canary Landscape\nSee https://github.com/SAP/terraform-provider-btp ","createdDate":"May 11, 2023, 8:59:23 AM","modifiedDate":"Feb 10, 2026, 4:55:39 AM","children":[{"guid":"14870944-4832-4e76-83f7-d2913661cf6d","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-se-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 23, 2025, 5:52:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jan 23, 2025, 6:03:51 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"14870944-4832-4e76-83f7-d2913661cf6d","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"customProperties":[{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":"Label text 1"},{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"},{"guid":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-roles","description":"PLEASE DO NOT DELETE!! This dir is used for integration test","createdDate":"Jul 18, 2024, 6:49:00 AM","createdBy":"john.doe+2@int.test","modifiedDate":"Jul 18, 2024, 7:49:40 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"},{"guid":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 27, 2025, 6:50:51 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Jan 29, 2025, 6:17:41 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"},{"guid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements","createdDate":"Oct 6, 2023, 9:57:23 AM","createdBy":"john.doe+4@int.test","modifiedDate":"Feb 17, 2026, 7:48:19 AM","children":[{"guid":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentGuid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGUID":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements-stacked","createdDate":"Oct 6, 2023, 9:58:25 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Oct 6, 2023, 9:58:25 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+6@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"},{"guid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization","createdDate":"May 30, 2025, 2:23:53 PM","createdBy":"john.doe+7@int.test","modifiedDate":"May 30, 2025, 2:24:04 PM","children":[{"guid":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentGuid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization-stacked","createdDate":"May 30, 2025, 2:24:48 PM","createdBy":"john.doe+8@int.test","modifiedDate":"May 30, 2025, 2:24:48 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Directory created.","subdomain":"a9546df7-214e-4414-9191-3d6adfc9cb53","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Global account updated.","subdomain":"terraformintcanary","subaccounts":[{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+9@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE"},{"guid":"d0fe61dc-2738-490a-b14f-e7f70588e145","technicalName":"d0fe61dc-2738-490a-b14f-e7f70588e145","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:07:46 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:08:27 AM","contractStatus":"ACTIVE"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+10@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe+11@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+12@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+13@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE"},{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe+14@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+15@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+16@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE"}],"contractStatus":"ACTIVE"}'
+ body: '{"commercialModel":"Subscription","consumptionBased":false,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101000297","useFor":"Testing","origin":"OPERATOR","guid":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"terraform-integration-canary","description":"Global Account for Integration tests for the Terraform provider for SAP BTP on Canary Landscape\nSee https://github.com/SAP/terraform-provider-btp ","createdDate":"May 11, 2023, 8:59:23 AM","modifiedDate":"Feb 10, 2026, 4:55:39 AM","children":[{"guid":"14870944-4832-4e76-83f7-d2913661cf6d","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-se-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 23, 2025, 5:52:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jan 23, 2025, 6:03:51 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"14870944-4832-4e76-83f7-d2913661cf6d","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"customProperties":[{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":"Label text 1"},{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"},{"guid":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-roles","description":"PLEASE DO NOT DELETE!! This dir is used for integration test","createdDate":"Jul 18, 2024, 6:49:00 AM","createdBy":"john.doe+2@int.test","modifiedDate":"Jul 18, 2024, 7:49:40 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 27, 2025, 6:50:51 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Jan 29, 2025, 6:17:41 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements","createdDate":"Oct 6, 2023, 9:57:23 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 17, 2026, 7:48:19 AM","children":[{"guid":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentGuid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGUID":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements-stacked","createdDate":"Oct 6, 2023, 9:58:25 AM","createdBy":"john.doe@int.test","modifiedDate":"Oct 6, 2023, 9:58:25 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+4@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+5@int.test"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization","createdDate":"May 30, 2025, 2:23:53 PM","createdBy":"john.doe@int.test","modifiedDate":"May 30, 2025, 2:24:04 PM","children":[{"guid":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentGuid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization-stacked","createdDate":"May 30, 2025, 2:24:48 PM","createdBy":"john.doe@int.test","modifiedDate":"May 30, 2025, 2:24:48 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Directory created.","subdomain":"a9546df7-214e-4414-9191-3d6adfc9cb53","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-disaster-revovery","description":"Directory conatining two paired DR subaccounts","createdDate":"Feb 27, 2026, 11:33:23 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:33:23 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"608858ef-5829-4aa6-88e7-0e220ef1aaeb","technicalName":"608858ef-5829-4aa6-88e7-0e220ef1aaeb","displayName":"integration-test-dr-subaccount-eu10-canary","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu10-canary","subdomain":"integration-test-dr-subaccount-eu10-canary-ls0upaxs","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 11:34:09 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:34:29 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"2dc1ecf1-786c-4f92-91f2-26650ab3ad28","technicalName":"2dc1ecf1-786c-4f92-91f2-26650ab3ad28","displayName":"integration-test-dr-to-be-paired-eu12","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-dr-to-be-paired-eu12-8tu9lgxa","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 12:59:03 PM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 12:59:34 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"f59b5902-d24c-446c-b245-92c814faa0d9","technicalName":"f59b5902-d24c-446c-b245-92c814faa0d9","displayName":"integration-test-dr-to-be-paired-eu10-canary","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu10-canary","subdomain":"integration-test-dr-to-be-paired-eu10-canacry-hqhkrthv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 12:58:30 PM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 12:59:17 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"badbcbf8-eca7-4472-9f66-cb9887ba7c3d","technicalName":"badbcbf8-eca7-4472-9f66-cb9887ba7c3d","displayName":"integration-test-dr-subaccount-eu12","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-dr-subaccount-eu12-99p94dot","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 11:34:34 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:34:59 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Global account updated.","subdomain":"terraformintcanary","subaccounts":[{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe+6@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+7@int.test"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+8@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+9@int.test"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+10@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+11@int.test"},{"guid":"b7ed3f66-5b6d-4290-856c-099e9e3cbb1b","technicalName":"b7ed3f66-5b6d-4290-856c-099e9e3cbb1b","displayName":"integration-test-ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-ias-408hsvn1","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test bundled applications on the SAP Cloud Identity Services Provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 8:47:42 AM","createdBy":"john.doe+12@int.test","modifiedDate":"Feb 27, 2026, 8:48:09 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+13@int.test"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+14@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+15@int.test"},{"guid":"8cd02222-7327-42c4-a428-bd9bcdcee88b","technicalName":"8cd02222-7327-42c4-a428-bd9bcdcee88b","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:31:00 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:31:44 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+16@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+17@int.test"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+18@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+19@int.test"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+20@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+21@int.test"}],"contractStatus":"ACTIVE"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1567,7 +1639,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:08:44 GMT
+ - Tue, 03 Mar 2026 14:31:52 GMT
Expires:
- "0"
Pragma:
@@ -1585,97 +1657,25 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - e3f0c379-b1a2-40d8-6d77-77273f63687a
+ - fd6b243d-5ee1-4915-63c2-5a0697eb306f
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 447.334083ms
- - id: 23
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 145
- transfer_encoding: []
- trailer: {}
- host: canary.cli.btp.int.sap
- remote_addr: ""
- request_uri: ""
- body: |
- {"paramValues":{"confirm":"true","forceDelete":"true","globalAccount":"terraformintcanary","subaccount":"d0fe61dc-2738-490a-b14f-e7f70588e145"}}
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Terraform/1.14.5 terraform-provider-btp/dev
- X-Correlationid:
- - ce7b0491-a688-05be-8108-427ea74241c6
- X-Cpcli-Customidp:
- - identityProvider
- X-Cpcli-Format:
- - json
- X-Cpcli-Sessionid:
- - redacted
- X-Cpcli-Subdomain:
- - terraformintcanary
- url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?delete
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: -1
- uncompressed: true
- body: '{"guid":"d0fe61dc-2738-490a-b14f-e7f70588e145","technicalName":"d0fe61dc-2738-490a-b14f-e7f70588e145","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"DELETING","stateMessage":"Delete subaccount entity","createdDate":"Feb 18, 2026, 6:07:46 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:08:27 AM","contractStatus":"ACTIVE","jobId":"23893572"}'
- headers:
- Cache-Control:
- - no-cache, no-store, max-age=0, must-revalidate
- Content-Security-Policy:
- - default-src 'self'
- Content-Type:
- - application/json
- Date:
- - Wed, 18 Feb 2026 06:08:44 GMT
- Expires:
- - "0"
- Pragma:
- - no-cache
- Referrer-Policy:
- - no-referrer
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains; preload;
- X-Content-Type-Options:
- - nosniff
- X-Cpcli-Backend-Mediatype:
- - application/json;charset=UTF-8
- X-Cpcli-Backend-Status:
- - "200"
- X-Frame-Options:
- - DENY
- X-Vcap-Request-Id:
- - a0abb08c-3a42-4561-5409-ecdaa2cf26e0
- X-Xss-Protection:
- - "1"
- status: 200 OK
- code: 200
- duration: 378.268375ms
+ duration: 223.7955ms
- id: 24
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 107
+ content_length: 146
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"d0fe61dc-2738-490a-b14f-e7f70588e145"}}
+ {"paramValues":{"confirm":"true","forceDelete":"false","globalAccount":"terraformintcanary","subaccount":"8cd02222-7327-42c4-a428-bd9bcdcee88b"}}
form: {}
headers:
Content-Type:
@@ -1683,7 +1683,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 10776505-5237-da03-875b-6769a3fb7414
+ - 84730bf7-b7b5-2f1e-5e78-8b4da514be34
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1692,7 +1692,7 @@ interactions:
- redacted
X-Cpcli-Subdomain:
- terraformintcanary
- url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?get
+ url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?delete
method: POST
response:
proto: HTTP/2.0
@@ -1702,7 +1702,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"d0fe61dc-2738-490a-b14f-e7f70588e145","technicalName":"d0fe61dc-2738-490a-b14f-e7f70588e145","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Feb 18, 2026, 6:07:46 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:08:45 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"8cd02222-7327-42c4-a428-bd9bcdcee88b","technicalName":"8cd02222-7327-42c4-a428-bd9bcdcee88b","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"DELETING","stateMessage":"Delete subaccount entity","createdDate":"Mar 3, 2026, 2:31:00 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:31:44 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test","jobId":"24061236"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1711,7 +1711,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:08:49 GMT
+ - Tue, 03 Mar 2026 14:31:53 GMT
Expires:
- "0"
Pragma:
@@ -1729,12 +1729,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 6e3b3228-3238-4888-739b-6b173b67c742
+ - 7f958ec9-6089-4a5c-421e-b742c034e55c
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 298.29775ms
+ duration: 480.503709ms
- id: 25
request:
proto: HTTP/1.1
@@ -1747,7 +1747,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"d0fe61dc-2738-490a-b14f-e7f70588e145"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"8cd02222-7327-42c4-a428-bd9bcdcee88b"}}
form: {}
headers:
Content-Type:
@@ -1755,7 +1755,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 5aac00ba-474a-d9ab-be95-ddeef8cbc70e
+ - e1eb4628-f641-754e-bb2b-b9816eca3131
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1774,7 +1774,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"d0fe61dc-2738-490a-b14f-e7f70588e145","technicalName":"d0fe61dc-2738-490a-b14f-e7f70588e145","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Feb 18, 2026, 6:07:46 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:08:45 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"8cd02222-7327-42c4-a428-bd9bcdcee88b","technicalName":"8cd02222-7327-42c4-a428-bd9bcdcee88b","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:31:00 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:31:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1783,7 +1783,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:08:55 GMT
+ - Tue, 03 Mar 2026 14:31:58 GMT
Expires:
- "0"
Pragma:
@@ -1801,12 +1801,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - d613a15a-7e6c-4874-77ca-ae2f118d6aab
+ - dd26afea-9bd8-4202-7c55-04d206a8846e
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 322.96725ms
+ duration: 90.359ms
- id: 26
request:
proto: HTTP/1.1
@@ -1819,7 +1819,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"d0fe61dc-2738-490a-b14f-e7f70588e145"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"8cd02222-7327-42c4-a428-bd9bcdcee88b"}}
form: {}
headers:
Content-Type:
@@ -1827,7 +1827,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 8f9265f8-7e6f-baf0-dc8c-59f3fb0b3240
+ - e997cc6a-758c-5490-df2f-ee3fed6e0e75
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1846,7 +1846,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"d0fe61dc-2738-490a-b14f-e7f70588e145","technicalName":"d0fe61dc-2738-490a-b14f-e7f70588e145","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Feb 18, 2026, 6:07:46 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:08:45 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"8cd02222-7327-42c4-a428-bd9bcdcee88b","technicalName":"8cd02222-7327-42c4-a428-bd9bcdcee88b","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:31:00 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:31:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1855,7 +1855,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:09:05 GMT
+ - Tue, 03 Mar 2026 14:32:03 GMT
Expires:
- "0"
Pragma:
@@ -1873,12 +1873,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - e50f3683-a77e-480b-5889-55f95c9460a0
+ - 79361805-deca-4eb6-64ad-5acbebe4ae65
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 302.259041ms
+ duration: 79.163042ms
- id: 27
request:
proto: HTTP/1.1
@@ -1891,7 +1891,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"d0fe61dc-2738-490a-b14f-e7f70588e145"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"8cd02222-7327-42c4-a428-bd9bcdcee88b"}}
form: {}
headers:
Content-Type:
@@ -1899,7 +1899,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 86a776e8-4955-6d9c-4894-094b7c035094
+ - 075eb798-af3b-1ca1-a4f8-14ca54dc3899
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1918,7 +1918,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"d0fe61dc-2738-490a-b14f-e7f70588e145","technicalName":"d0fe61dc-2738-490a-b14f-e7f70588e145","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Feb 18, 2026, 6:07:46 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:08:45 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"8cd02222-7327-42c4-a428-bd9bcdcee88b","technicalName":"8cd02222-7327-42c4-a428-bd9bcdcee88b","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:31:00 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:31:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1927,7 +1927,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:09:15 GMT
+ - Tue, 03 Mar 2026 14:32:13 GMT
Expires:
- "0"
Pragma:
@@ -1945,12 +1945,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 87e1b8de-b6cf-4e02-4b59-56c6b01537f9
+ - e289eeab-6f3a-4f0a-479b-34007d20db1a
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 315.141459ms
+ duration: 86.322458ms
- id: 28
request:
proto: HTTP/1.1
@@ -1963,79 +1963,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"d0fe61dc-2738-490a-b14f-e7f70588e145"}}
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Terraform/1.14.5 terraform-provider-btp/dev
- X-Correlationid:
- - c37c4917-ff8d-eabd-720d-925f83237fa5
- X-Cpcli-Customidp:
- - identityProvider
- X-Cpcli-Format:
- - json
- X-Cpcli-Sessionid:
- - redacted
- X-Cpcli-Subdomain:
- - terraformintcanary
- url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?get
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: -1
- uncompressed: true
- body: '{"guid":"d0fe61dc-2738-490a-b14f-e7f70588e145","technicalName":"d0fe61dc-2738-490a-b14f-e7f70588e145","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"My subaccount description","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Feb 18, 2026, 6:07:46 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:08:45 AM","contractStatus":"ACTIVE"}'
- headers:
- Cache-Control:
- - no-cache, no-store, max-age=0, must-revalidate
- Content-Security-Policy:
- - default-src 'self'
- Content-Type:
- - application/json
- Date:
- - Wed, 18 Feb 2026 06:09:26 GMT
- Expires:
- - "0"
- Pragma:
- - no-cache
- Referrer-Policy:
- - no-referrer
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains; preload;
- X-Content-Type-Options:
- - nosniff
- X-Cpcli-Backend-Mediatype:
- - application/json;charset=UTF-8
- X-Cpcli-Backend-Status:
- - "200"
- X-Frame-Options:
- - DENY
- X-Vcap-Request-Id:
- - d363448b-7f6e-476f-7bf8-a08d9a76908f
- X-Xss-Protection:
- - "1"
- status: 200 OK
- code: 200
- duration: 279.47825ms
- - id: 29
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 107
- transfer_encoding: []
- trailer: {}
- host: canary.cli.btp.int.sap
- remote_addr: ""
- request_uri: ""
- body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"d0fe61dc-2738-490a-b14f-e7f70588e145"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"8cd02222-7327-42c4-a428-bd9bcdcee88b"}}
form: {}
headers:
Content-Type:
@@ -2043,7 +1971,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - dabd4acf-bce9-6fa5-ecf8-487e1e273513
+ - 6415997c-77cf-1803-798c-b2fe9a853528
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -2062,7 +1990,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"error":"Subaccount d0fe61dc-2738-490a-b14f-e7f70588e145 not found [Error: 20004/404]"}'
+ body: '{"error":"Subaccount 8cd02222-7327-42c4-a428-bd9bcdcee88b not found [Error: 20004/404]"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -2071,7 +1999,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:09:36 GMT
+ - Tue, 03 Mar 2026 14:32:23 GMT
Expires:
- "0"
Pragma:
@@ -2089,9 +2017,9 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 71c6fd56-fd84-476b-4f45-6826247b436c
+ - 088ac738-cdcb-43c4-597b-dfabccc27a54
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 353.052667ms
+ duration: 139.232375ms
diff --git a/btp/provider/fixtures/resource_subaccount.skip_entitlements.yaml b/btp/provider/fixtures/resource_subaccount.skip_entitlements.yaml
index d71d00b8..477a8c9f 100644
--- a/btp/provider/fixtures/resource_subaccount.skip_entitlements.yaml
+++ b/btp/provider/fixtures/resource_subaccount.skip_entitlements.yaml
@@ -6,7 +6,7 @@ interactions:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -21,7 +21,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 0c21baf4-b81a-03a4-5e83-39f68dddb309
+ - eb001423-2656-6757-8ba9-83b8ca5664e8
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -32,20 +32,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 0
uncompressed: false
- body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
+ body: ""
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "0"
Content-Security-Policy:
- default-src 'self'
- Content-Type:
- - application/json
Date:
- - Wed, 18 Feb 2026 06:12:19 GMT
+ - Tue, 03 Mar 2026 14:36:17 GMT
Expires:
- "0"
Pragma:
@@ -56,23 +54,23 @@ interactions:
- max-age=31536000; includeSubDomains; preload;
X-Content-Type-Options:
- nosniff
- X-Cpcli-Sessionid:
- - redacted
+ X-Cpcli-Server-Message:
+ - A timeout was reached while preparing the command execution. The command execution request was not sent to the backend.
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - de739eac-f858-4567-5712-0b41eedf73b4
+ - e6a785a2-b717-4117-76aa-3c2fe7e1c9c5
X-Xss-Protection:
- "1"
- status: 200 OK
- code: 200
- duration: 1.611472168s
+ status: 504 Gateway Timeout
+ code: 504
+ duration: 20.204990302s
- id: 1
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -87,7 +85,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 7624a426-ebfe-c386-f4fa-e4a57429088c
+ - eb001423-2656-6757-8ba9-83b8ca5664e8
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -98,20 +96,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:12:19 GMT
+ - Tue, 03 Mar 2026 14:36:18 GMT
Expires:
- "0"
Pragma:
@@ -127,25 +125,25 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 80ada2c9-e82f-4708-7ff1-df5ac9a0faed
+ - f5773d27-0f3b-4e74-74cc-ab669da67f31
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 374.744084ms
+ duration: 735.153167ms
- id: 2
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 216
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"betaEnabled":"false","displayName":"integration-test-acc-dyn","globalAccount":"terraformintcanary","labels":"{}","region":"eu12","skipAutoAssignPlans":"true","subdomain":"integration-test-acc-dyn"}}
+ {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"}
form: {}
headers:
Content-Type:
@@ -153,16 +151,10 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 10146e33-164d-a197-4183-a516ff928b5a
- X-Cpcli-Customidp:
- - identityProvider
+ - 758aa367-9bc7-9cbb-ebc0-fd737c4266cd
X-Cpcli-Format:
- json
- X-Cpcli-Sessionid:
- - redacted
- X-Cpcli-Subdomain:
- - terraformintcanary
- url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?create
+ url: https://canary.cli.btp.int.sap/login/v2.97.0
method: POST
response:
proto: HTTP/2.0
@@ -170,18 +162,84 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: -1
- uncompressed: true
- body: '{"guid":"836852e5-0077-4bdb-91f7-d85831e92188","technicalName":"N\/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"STARTED","createdDate":"Feb 18, 2026, 6:12:20 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:12:20 AM","contractStatus":"ACTIVE","jobId":"23893592"}'
+ content_length: 0
+ uncompressed: false
+ body: ""
+ headers:
+ Cache-Control:
+ - no-cache, no-store, max-age=0, must-revalidate
+ Content-Length:
+ - "0"
+ Content-Security-Policy:
+ - default-src 'self'
+ Date:
+ - Tue, 03 Mar 2026 14:36:39 GMT
+ Expires:
+ - "0"
+ Pragma:
+ - no-cache
+ Referrer-Policy:
+ - no-referrer
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload;
+ X-Content-Type-Options:
+ - nosniff
+ X-Cpcli-Server-Message:
+ - A timeout was reached while preparing the command execution. The command execution request was not sent to the backend.
+ X-Frame-Options:
+ - DENY
+ X-Vcap-Request-Id:
+ - 50fbdea7-e4a7-477a-662b-2869247e54d2
+ X-Xss-Protection:
+ - "1"
+ status: 504 Gateway Timeout
+ code: 504
+ duration: 20.0326293s
+ - id: 3
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 118
+ transfer_encoding: []
+ trailer: {}
+ host: canary.cli.btp.int.sap
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Terraform/1.14.5 terraform-provider-btp/dev
+ X-Correlationid:
+ - 758aa367-9bc7-9cbb-ebc0-fd737c4266cd
+ X-Cpcli-Format:
+ - json
+ url: https://canary.cli.btp.int.sap/login/v2.97.0
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 84
+ uncompressed: false
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
+ Content-Length:
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:12:20 GMT
+ - Tue, 03 Mar 2026 14:36:40 GMT
Expires:
- "0"
Pragma:
@@ -192,32 +250,30 @@ interactions:
- max-age=31536000; includeSubDomains; preload;
X-Content-Type-Options:
- nosniff
- X-Cpcli-Backend-Mediatype:
- - application/json;charset=UTF-8
- X-Cpcli-Backend-Status:
- - "200"
+ X-Cpcli-Sessionid:
+ - redacted
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - d2edc3c1-2b47-4808-55f7-befecb795bc9
+ - 17b51ad9-5286-4543-5f48-664c49b27dfd
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 619.558209ms
- - id: 3
+ duration: 616.254542ms
+ - id: 4
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 107
+ content_length: 216
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"836852e5-0077-4bdb-91f7-d85831e92188"}}
+ {"paramValues":{"betaEnabled":"false","displayName":"integration-test-acc-dyn","globalAccount":"terraformintcanary","labels":"{}","region":"eu12","skipAutoAssignPlans":"true","subdomain":"integration-test-acc-dyn"}}
form: {}
headers:
Content-Type:
@@ -225,7 +281,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 9e31044b-2cc2-e763-15df-983dd4fdcfba
+ - e70f6231-0b14-8e2d-323d-512e931cdd31
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -234,7 +290,7 @@ interactions:
- redacted
X-Cpcli-Subdomain:
- terraformintcanary
- url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?get
+ url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?create
method: POST
response:
proto: HTTP/2.0
@@ -244,7 +300,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"836852e5-0077-4bdb-91f7-d85831e92188","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Feb 18, 2026, 6:12:20 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:12:21 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"ab6fb3e6-3363-4f55-9329-c29b1c242435","technicalName":"N\/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"STARTED","createdDate":"Mar 3, 2026, 2:36:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:36:41 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test","jobId":"24061266"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -253,7 +309,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:12:25 GMT
+ - Tue, 03 Mar 2026 14:36:41 GMT
Expires:
- "0"
Pragma:
@@ -271,13 +327,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 576e76ec-9849-4471-65f3-afd239a5af48
+ - 8d09836e-c86b-4f68-56d3-e1ec368a4092
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 306.373958ms
- - id: 4
+ duration: 605.632876ms
+ - id: 5
request:
proto: HTTP/1.1
proto_major: 1
@@ -289,7 +345,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"836852e5-0077-4bdb-91f7-d85831e92188"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"ab6fb3e6-3363-4f55-9329-c29b1c242435"}}
form: {}
headers:
Content-Type:
@@ -297,7 +353,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 820e38c0-578b-e94c-eaf8-64c23fabd9c8
+ - f1eebb1e-54e4-7d1b-bcb1-d24a6816671d
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -316,7 +372,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"836852e5-0077-4bdb-91f7-d85831e92188","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Feb 18, 2026, 6:12:20 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:12:21 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"ab6fb3e6-3363-4f55-9329-c29b1c242435","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Mar 3, 2026, 2:36:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:36:42 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -325,7 +381,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:12:30 GMT
+ - Tue, 03 Mar 2026 14:36:46 GMT
Expires:
- "0"
Pragma:
@@ -343,13 +399,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 81bc2275-e306-40d9-6eeb-aadd837ffa1f
+ - 9b136baf-b78e-44c7-5dcf-487a2220ff57
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 315.565916ms
- - id: 5
+ duration: 84.98925ms
+ - id: 6
request:
proto: HTTP/1.1
proto_major: 1
@@ -361,7 +417,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"836852e5-0077-4bdb-91f7-d85831e92188"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"ab6fb3e6-3363-4f55-9329-c29b1c242435"}}
form: {}
headers:
Content-Type:
@@ -369,7 +425,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 48b0d299-3806-2beb-da76-adb1f07641dc
+ - 12267f21-109c-3aa4-6048-61394fc13465
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -388,7 +444,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"836852e5-0077-4bdb-91f7-d85831e92188","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Feb 18, 2026, 6:12:20 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:12:21 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"ab6fb3e6-3363-4f55-9329-c29b1c242435","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Mar 3, 2026, 2:36:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:36:42 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -397,7 +453,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:12:41 GMT
+ - Tue, 03 Mar 2026 14:36:51 GMT
Expires:
- "0"
Pragma:
@@ -415,13 +471,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 679293e7-62fb-4d19-77fb-1ad712c540f3
+ - 5779f9fe-b39f-453f-4447-5c63fb7b56a9
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 320.668709ms
- - id: 6
+ duration: 77.748167ms
+ - id: 7
request:
proto: HTTP/1.1
proto_major: 1
@@ -433,7 +489,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"836852e5-0077-4bdb-91f7-d85831e92188"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"ab6fb3e6-3363-4f55-9329-c29b1c242435"}}
form: {}
headers:
Content-Type:
@@ -441,7 +497,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 6da1b6aa-ffbf-dc4e-eb74-923a15b8c330
+ - e77c8ed9-0cc1-397a-51b3-8042d1ad7bdb
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -460,7 +516,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"836852e5-0077-4bdb-91f7-d85831e92188","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Feb 18, 2026, 6:12:20 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:12:21 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"ab6fb3e6-3363-4f55-9329-c29b1c242435","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Mar 3, 2026, 2:36:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:36:42 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -469,7 +525,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:12:51 GMT
+ - Tue, 03 Mar 2026 14:37:01 GMT
Expires:
- "0"
Pragma:
@@ -487,13 +543,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 47a43fe1-5de4-424b-5ebf-4d21d3eb283e
+ - e073cc17-6a0e-4b17-7da8-81fb0e0da398
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 332.029625ms
- - id: 7
+ duration: 81.07225ms
+ - id: 8
request:
proto: HTTP/1.1
proto_major: 1
@@ -505,7 +561,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"836852e5-0077-4bdb-91f7-d85831e92188"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"ab6fb3e6-3363-4f55-9329-c29b1c242435"}}
form: {}
headers:
Content-Type:
@@ -513,7 +569,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - b874d173-69f6-096c-837f-951c6d0a2de3
+ - 1f49f414-417c-0643-9236-9c68281ea0f5
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -532,7 +588,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"836852e5-0077-4bdb-91f7-d85831e92188","technicalName":"836852e5-0077-4bdb-91f7-d85831e92188","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:12:20 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:12:59 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"ab6fb3e6-3363-4f55-9329-c29b1c242435","technicalName":"ab6fb3e6-3363-4f55-9329-c29b1c242435","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:36:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:37:03 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -541,7 +597,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:13:01 GMT
+ - Tue, 03 Mar 2026 14:37:11 GMT
Expires:
- "0"
Pragma:
@@ -559,18 +615,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 46877b7b-d809-4041-643b-b36efe31ceb1
+ - 45f93174-3ee9-4f96-69a3-724d190dce4a
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 314.616292ms
- - id: 8
+ duration: 68.795292ms
+ - id: 9
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -585,7 +641,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 015476ee-8be5-40f6-5ffb-83b05b559a97
+ - dce0ee8b-545a-6df7-4aaf-ff9cbcb7730e
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -596,20 +652,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:13:04 GMT
+ - Tue, 03 Mar 2026 14:37:12 GMT
Expires:
- "0"
Pragma:
@@ -625,18 +681,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - a5551508-ff4c-4d05-6ad5-ce5e92c2a966
+ - 3373ddf8-0402-40b4-51ab-6270a4706c91
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 1.938164335s
- - id: 9
+ duration: 373.165333ms
+ - id: 10
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -651,7 +707,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 5e84dc70-4436-0253-479c-867210741edf
+ - 7969d2ff-c538-6da0-25db-15580bd40f84
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -662,20 +718,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:13:04 GMT
+ - Tue, 03 Mar 2026 14:37:12 GMT
Expires:
- "0"
Pragma:
@@ -691,13 +747,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 9182769b-b847-493b-7430-9e90bf5fb584
+ - ea378ba8-9053-4317-5c76-6fd44a2daa3f
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 380.517375ms
- - id: 10
+ duration: 501.017917ms
+ - id: 11
request:
proto: HTTP/1.1
proto_major: 1
@@ -709,7 +765,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"836852e5-0077-4bdb-91f7-d85831e92188"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"ab6fb3e6-3363-4f55-9329-c29b1c242435"}}
form: {}
headers:
Content-Type:
@@ -717,7 +773,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 644b8c2e-8ecd-a2da-47fa-65ac4be7186b
+ - 2946692d-ed35-30db-b91f-d43bef1d8bec
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -736,7 +792,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"836852e5-0077-4bdb-91f7-d85831e92188","technicalName":"836852e5-0077-4bdb-91f7-d85831e92188","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:12:20 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:12:59 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"ab6fb3e6-3363-4f55-9329-c29b1c242435","technicalName":"ab6fb3e6-3363-4f55-9329-c29b1c242435","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:36:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:37:03 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -745,7 +801,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:13:04 GMT
+ - Tue, 03 Mar 2026 14:37:12 GMT
Expires:
- "0"
Pragma:
@@ -763,18 +819,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 509e61d6-ca65-4b75-62c9-764596026b08
+ - 97ec5017-90d3-442c-74ba-e84c37c8b853
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 403.993334ms
- - id: 11
+ duration: 299.255583ms
+ - id: 12
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -789,7 +845,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 3e5a4cf0-9a14-9b32-7710-d4b1dc5daca3
+ - b68883b3-a9df-e68d-7368-a47b1bd454b7
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -800,20 +856,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:13:08 GMT
+ - Tue, 03 Mar 2026 14:37:13 GMT
Expires:
- "0"
Pragma:
@@ -829,13 +885,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - ecdc54b1-6813-469d-4372-9b5f1b9f9d2e
+ - e69f6290-1857-48cb-5537-eee300fff17e
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 3.517739419s
- - id: 12
+ duration: 512.347834ms
+ - id: 13
request:
proto: HTTP/1.1
proto_major: 1
@@ -847,7 +903,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"836852e5-0077-4bdb-91f7-d85831e92188"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"ab6fb3e6-3363-4f55-9329-c29b1c242435"}}
form: {}
headers:
Content-Type:
@@ -855,7 +911,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - ecbbfda5-02ad-09da-2f93-6ad0802c0ca1
+ - c4a739da-2087-62bb-4651-eb48ea2cafa1
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -874,7 +930,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"836852e5-0077-4bdb-91f7-d85831e92188","technicalName":"836852e5-0077-4bdb-91f7-d85831e92188","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:12:20 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:12:59 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"ab6fb3e6-3363-4f55-9329-c29b1c242435","technicalName":"ab6fb3e6-3363-4f55-9329-c29b1c242435","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:36:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:37:03 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -883,7 +939,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:13:08 GMT
+ - Tue, 03 Mar 2026 14:37:13 GMT
Expires:
- "0"
Pragma:
@@ -901,18 +957,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 15b66152-16dc-4afc-436d-d7ff8fe6000f
+ - 9660f2a0-2cf2-406f-486e-4eff5b61d08b
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 429.916583ms
- - id: 13
+ duration: 176.116875ms
+ - id: 14
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -927,7 +983,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 68ba1723-d200-b556-8580-e527915127f2
+ - 4ff57f32-a5ad-2f39-f908-1699d6af2252
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -938,20 +994,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:13:09 GMT
+ - Tue, 03 Mar 2026 14:37:14 GMT
Expires:
- "0"
Pragma:
@@ -967,13 +1023,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 91e23a57-e84b-411f-7c36-2a0d9901ea89
+ - e91c6681-04df-4e04-691b-262a7c6d809d
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 498.341833ms
- - id: 14
+ duration: 454.891417ms
+ - id: 15
request:
proto: HTTP/1.1
proto_major: 1
@@ -985,7 +1041,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"betaEnabled":"false","directoryID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"Integration Test Acc Dyn","globalAccount":"terraformintcanary","labels":"{}","subaccount":"836852e5-0077-4bdb-91f7-d85831e92188"}}
+ {"paramValues":{"betaEnabled":"false","directoryID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"Integration Test Acc Dyn","globalAccount":"terraformintcanary","labels":"{}","subaccount":"ab6fb3e6-3363-4f55-9329-c29b1c242435"}}
form: {}
headers:
Content-Type:
@@ -993,7 +1049,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 09699e14-e34e-7fc6-d3d3-9d343968aeef
+ - c86f0eb1-7ae3-dc70-f4fa-85485b6d28e5
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1012,7 +1068,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"836852e5-0077-4bdb-91f7-d85831e92188","technicalName":"836852e5-0077-4bdb-91f7-d85831e92188","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","description":null,"state":"OK","stateMessage":"Subaccount created.","contentAutomationState":null,"contentAutomationStateDetails":null,"createdDate":1771395140239,"createdBy":"john.doe@int.test","modifiedDate":1771395189955,"contractStatus":"ACTIVE"}'
+ body: '{"guid":"ab6fb3e6-3363-4f55-9329-c29b1c242435","technicalName":"ab6fb3e6-3363-4f55-9329-c29b1c242435","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","description":null,"state":"OK","stateMessage":"Subaccount created.","contentAutomationState":null,"contentAutomationStateDetails":null,"createdDate":1772548601129,"createdBy":"john.doe@int.test","modifiedDate":1772548634481,"contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1021,7 +1077,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:13:10 GMT
+ - Tue, 03 Mar 2026 14:37:14 GMT
Expires:
- "0"
Pragma:
@@ -1039,13 +1095,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 5f517614-0907-4290-6600-4a54223f39b6
+ - 061e57ef-c64c-412d-6571-c2f491bcb2fa
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 664.270584ms
- - id: 15
+ duration: 401.516458ms
+ - id: 16
request:
proto: HTTP/1.1
proto_major: 1
@@ -1057,7 +1113,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"836852e5-0077-4bdb-91f7-d85831e92188"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"ab6fb3e6-3363-4f55-9329-c29b1c242435"}}
form: {}
headers:
Content-Type:
@@ -1065,7 +1121,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 765972f8-43de-50dc-a539-153fe6999b7b
+ - 3459cb1a-e53a-6b01-4886-bead5d224a46
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1084,7 +1140,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"836852e5-0077-4bdb-91f7-d85831e92188","technicalName":"836852e5-0077-4bdb-91f7-d85831e92188","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:12:20 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:13:09 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"ab6fb3e6-3363-4f55-9329-c29b1c242435","technicalName":"ab6fb3e6-3363-4f55-9329-c29b1c242435","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:36:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:37:14 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1093,7 +1149,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:13:15 GMT
+ - Tue, 03 Mar 2026 14:37:19 GMT
Expires:
- "0"
Pragma:
@@ -1111,18 +1167,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - a4e3f45b-89c6-46e7-4a6e-a4b67a94017f
+ - 3aff9e95-bc53-4ead-6385-8e505ce3721d
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 330.380875ms
- - id: 16
+ duration: 111.906167ms
+ - id: 17
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -1137,7 +1193,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 03f97f92-9e1f-faaf-673b-bb634c59be81
+ - 773494be-c23d-a538-1b49-a5b6816d8372
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -1148,20 +1204,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:13:17 GMT
+ - Tue, 03 Mar 2026 14:37:20 GMT
Expires:
- "0"
Pragma:
@@ -1177,18 +1233,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 1504c38c-f236-494f-4f87-213d48a14ef3
+ - a4fc2f8f-4379-4e1c-75c4-c792ad9bb3f1
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 1.854914959s
- - id: 17
+ duration: 641.201083ms
+ - id: 18
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -1203,7 +1259,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 3ba87393-1e0f-970c-b4ba-e1164003e3b5
+ - 5cc10fd2-09b2-1718-2e54-cfb755e6511b
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -1214,20 +1270,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:13:17 GMT
+ - Tue, 03 Mar 2026 14:37:21 GMT
Expires:
- "0"
Pragma:
@@ -1243,13 +1299,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 8084fc01-0529-43ae-703f-272d888a5d51
+ - f42b49e8-1906-449b-6f63-5c6247f7e810
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 432.839042ms
- - id: 18
+ duration: 533.119ms
+ - id: 19
request:
proto: HTTP/1.1
proto_major: 1
@@ -1261,7 +1317,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"836852e5-0077-4bdb-91f7-d85831e92188"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"ab6fb3e6-3363-4f55-9329-c29b1c242435"}}
form: {}
headers:
Content-Type:
@@ -1269,7 +1325,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - b5214543-f237-8f49-f0d0-7f0c9bc7c6a1
+ - b33f67e9-1e8c-d1eb-edb9-731a126ecd88
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1288,7 +1344,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"836852e5-0077-4bdb-91f7-d85831e92188","technicalName":"836852e5-0077-4bdb-91f7-d85831e92188","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:12:20 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:13:09 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"ab6fb3e6-3363-4f55-9329-c29b1c242435","technicalName":"ab6fb3e6-3363-4f55-9329-c29b1c242435","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:36:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:37:14 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1297,7 +1353,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:13:18 GMT
+ - Tue, 03 Mar 2026 14:37:21 GMT
Expires:
- "0"
Pragma:
@@ -1315,18 +1371,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - b49bba82-ff6e-49fb-4b30-b9a2ddb497ee
+ - f31cc2f7-a320-4ca2-4fe3-9ac5c2c3ff71
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 413.583ms
- - id: 19
+ duration: 245.83575ms
+ - id: 20
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -1341,7 +1397,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - a66aadb3-b71b-ae14-08bf-4bc73fc5969a
+ - 76a9e36f-df1f-720b-8856-201c85a97675
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -1352,20 +1408,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:13:21 GMT
+ - Tue, 03 Mar 2026 14:37:21 GMT
Expires:
- "0"
Pragma:
@@ -1381,18 +1437,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 52102fc2-587e-496a-5c82-bea02b9f9cb5
+ - 538fbe10-80e1-4f95-725f-3d80c8ae72ae
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 2.992807543s
- - id: 20
+ duration: 423.752584ms
+ - id: 21
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -1407,7 +1463,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - b69eb046-446c-bd3f-c63e-ed4e10ceb741
+ - e24b3a0b-a663-470c-bb88-bfaaaaa36323
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -1418,20 +1474,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:13:21 GMT
+ - Tue, 03 Mar 2026 14:37:22 GMT
Expires:
- "0"
Pragma:
@@ -1447,13 +1503,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - bbf45223-7970-4183-649e-04c1a9a38114
+ - 62542076-8157-4c13-535f-09fab5a9f619
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 410.817833ms
- - id: 21
+ duration: 481.241833ms
+ - id: 22
request:
proto: HTTP/1.1
proto_major: 1
@@ -1473,7 +1529,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 14b088e9-f92c-affc-dc56-a96c8b3217df
+ - 1d5528e3-041d-281d-230e-95ca530c8aeb
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1492,7 +1548,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"commercialModel":"Subscription","consumptionBased":false,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101000297","useFor":"Testing","origin":"OPERATOR","guid":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"terraform-integration-canary","description":"Global Account for Integration tests for the Terraform provider for SAP BTP on Canary Landscape\nSee https://github.com/SAP/terraform-provider-btp ","createdDate":"May 11, 2023, 8:59:23 AM","modifiedDate":"Feb 10, 2026, 4:55:39 AM","children":[{"guid":"14870944-4832-4e76-83f7-d2913661cf6d","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-se-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 23, 2025, 5:52:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jan 23, 2025, 6:03:51 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"14870944-4832-4e76-83f7-d2913661cf6d","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"customProperties":[{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":"Label text 1"},{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"},{"guid":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-roles","description":"PLEASE DO NOT DELETE!! This dir is used for integration test","createdDate":"Jul 18, 2024, 6:49:00 AM","createdBy":"john.doe+2@int.test","modifiedDate":"Jul 18, 2024, 7:49:40 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"},{"guid":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 27, 2025, 6:50:51 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Jan 29, 2025, 6:17:41 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"},{"guid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements","createdDate":"Oct 6, 2023, 9:57:23 AM","createdBy":"john.doe+4@int.test","modifiedDate":"Feb 17, 2026, 7:48:19 AM","children":[{"guid":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentGuid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGUID":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements-stacked","createdDate":"Oct 6, 2023, 9:58:25 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Oct 6, 2023, 9:58:25 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+6@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"},{"guid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization","createdDate":"May 30, 2025, 2:23:53 PM","createdBy":"john.doe+7@int.test","modifiedDate":"May 30, 2025, 2:24:04 PM","children":[{"guid":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentGuid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization-stacked","createdDate":"May 30, 2025, 2:24:48 PM","createdBy":"john.doe+8@int.test","modifiedDate":"May 30, 2025, 2:24:48 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Directory created.","subdomain":"a9546df7-214e-4414-9191-3d6adfc9cb53","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Global account updated.","subdomain":"terraformintcanary","subaccounts":[{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+9@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+10@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE"},{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+11@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe+12@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+13@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+14@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe+15@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+16@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE"},{"guid":"836852e5-0077-4bdb-91f7-d85831e92188","technicalName":"836852e5-0077-4bdb-91f7-d85831e92188","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:12:20 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:13:09 AM","contractStatus":"ACTIVE"}],"contractStatus":"ACTIVE"}'
+ body: '{"commercialModel":"Subscription","consumptionBased":false,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101000297","useFor":"Testing","origin":"OPERATOR","guid":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"terraform-integration-canary","description":"Global Account for Integration tests for the Terraform provider for SAP BTP on Canary Landscape\nSee https://github.com/SAP/terraform-provider-btp ","createdDate":"May 11, 2023, 8:59:23 AM","modifiedDate":"Feb 10, 2026, 4:55:39 AM","children":[{"guid":"14870944-4832-4e76-83f7-d2913661cf6d","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-se-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 23, 2025, 5:52:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jan 23, 2025, 6:03:51 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"14870944-4832-4e76-83f7-d2913661cf6d","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"customProperties":[{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":"Label text 1"},{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"},{"guid":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-roles","description":"PLEASE DO NOT DELETE!! This dir is used for integration test","createdDate":"Jul 18, 2024, 6:49:00 AM","createdBy":"john.doe+2@int.test","modifiedDate":"Jul 18, 2024, 7:49:40 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 27, 2025, 6:50:51 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Jan 29, 2025, 6:17:41 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements","createdDate":"Oct 6, 2023, 9:57:23 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 17, 2026, 7:48:19 AM","children":[{"guid":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentGuid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGUID":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements-stacked","createdDate":"Oct 6, 2023, 9:58:25 AM","createdBy":"john.doe@int.test","modifiedDate":"Oct 6, 2023, 9:58:25 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+4@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+5@int.test"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization","createdDate":"May 30, 2025, 2:23:53 PM","createdBy":"john.doe@int.test","modifiedDate":"May 30, 2025, 2:24:04 PM","children":[{"guid":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentGuid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization-stacked","createdDate":"May 30, 2025, 2:24:48 PM","createdBy":"john.doe@int.test","modifiedDate":"May 30, 2025, 2:24:48 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Directory created.","subdomain":"a9546df7-214e-4414-9191-3d6adfc9cb53","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-disaster-revovery","description":"Directory conatining two paired DR subaccounts","createdDate":"Feb 27, 2026, 11:33:23 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:33:23 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"608858ef-5829-4aa6-88e7-0e220ef1aaeb","technicalName":"608858ef-5829-4aa6-88e7-0e220ef1aaeb","displayName":"integration-test-dr-subaccount-eu10-canary","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu10-canary","subdomain":"integration-test-dr-subaccount-eu10-canary-ls0upaxs","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 11:34:09 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:34:29 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"2dc1ecf1-786c-4f92-91f2-26650ab3ad28","technicalName":"2dc1ecf1-786c-4f92-91f2-26650ab3ad28","displayName":"integration-test-dr-to-be-paired-eu12","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-dr-to-be-paired-eu12-8tu9lgxa","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 12:59:03 PM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 12:59:34 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"f59b5902-d24c-446c-b245-92c814faa0d9","technicalName":"f59b5902-d24c-446c-b245-92c814faa0d9","displayName":"integration-test-dr-to-be-paired-eu10-canary","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu10-canary","subdomain":"integration-test-dr-to-be-paired-eu10-canacry-hqhkrthv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 12:58:30 PM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 12:59:17 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"badbcbf8-eca7-4472-9f66-cb9887ba7c3d","technicalName":"badbcbf8-eca7-4472-9f66-cb9887ba7c3d","displayName":"integration-test-dr-subaccount-eu12","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-dr-subaccount-eu12-99p94dot","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 11:34:34 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:34:59 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Global account updated.","subdomain":"terraformintcanary","subaccounts":[{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe+6@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+7@int.test"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+8@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+9@int.test"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+10@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+11@int.test"},{"guid":"b7ed3f66-5b6d-4290-856c-099e9e3cbb1b","technicalName":"b7ed3f66-5b6d-4290-856c-099e9e3cbb1b","displayName":"integration-test-ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-ias-408hsvn1","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test bundled applications on the SAP Cloud Identity Services Provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 8:47:42 AM","createdBy":"john.doe+12@int.test","modifiedDate":"Feb 27, 2026, 8:48:09 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+13@int.test"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+14@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+15@int.test"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"ab6fb3e6-3363-4f55-9329-c29b1c242435","technicalName":"ab6fb3e6-3363-4f55-9329-c29b1c242435","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:36:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:37:14 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+16@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+17@int.test"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+18@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+19@int.test"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+20@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+21@int.test"}],"contractStatus":"ACTIVE"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1501,7 +1557,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:13:22 GMT
+ - Tue, 03 Mar 2026 14:37:22 GMT
Expires:
- "0"
Pragma:
@@ -1519,25 +1575,25 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - aa951aaf-fb18-4af3-48fe-b137c6e7ad92
+ - a33cc1d6-1d81-43cd-7329-7fd358a82d8d
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 435.819376ms
- - id: 22
+ duration: 188.225876ms
+ - id: 23
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 145
+ content_length: 146
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"confirm":"true","forceDelete":"true","globalAccount":"terraformintcanary","subaccount":"836852e5-0077-4bdb-91f7-d85831e92188"}}
+ {"paramValues":{"confirm":"true","forceDelete":"false","globalAccount":"terraformintcanary","subaccount":"ab6fb3e6-3363-4f55-9329-c29b1c242435"}}
form: {}
headers:
Content-Type:
@@ -1545,7 +1601,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 9c4e1ad1-a1de-c62d-92b9-ae9aef4997b1
+ - 742942b7-7c20-4e82-ed17-bf5cae69ea7d
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1564,7 +1620,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"836852e5-0077-4bdb-91f7-d85831e92188","technicalName":"836852e5-0077-4bdb-91f7-d85831e92188","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Delete subaccount entity","createdDate":"Feb 18, 2026, 6:12:20 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:13:09 AM","contractStatus":"ACTIVE","jobId":"23893611"}'
+ body: '{"guid":"ab6fb3e6-3363-4f55-9329-c29b1c242435","technicalName":"ab6fb3e6-3363-4f55-9329-c29b1c242435","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Delete subaccount entity","createdDate":"Mar 3, 2026, 2:36:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:37:14 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test","jobId":"24061281"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1573,7 +1629,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:13:22 GMT
+ - Tue, 03 Mar 2026 14:37:22 GMT
Expires:
- "0"
Pragma:
@@ -1591,13 +1647,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 69912599-1c27-484c-634f-98501671007d
+ - bb9d7da3-9fcd-43fe-74f3-79d00a2bbe74
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 375.099042ms
- - id: 23
+ duration: 374.125666ms
+ - id: 24
request:
proto: HTTP/1.1
proto_major: 1
@@ -1609,7 +1665,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"836852e5-0077-4bdb-91f7-d85831e92188"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"ab6fb3e6-3363-4f55-9329-c29b1c242435"}}
form: {}
headers:
Content-Type:
@@ -1617,7 +1673,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 73c6a78d-bf41-86c4-651c-5f65d6bc5b78
+ - 80215334-4bf7-0aca-9961-59667f7fb084
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1636,7 +1692,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"836852e5-0077-4bdb-91f7-d85831e92188","technicalName":"836852e5-0077-4bdb-91f7-d85831e92188","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Feb 18, 2026, 6:12:20 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:13:23 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"ab6fb3e6-3363-4f55-9329-c29b1c242435","technicalName":"ab6fb3e6-3363-4f55-9329-c29b1c242435","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:36:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:37:23 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1645,7 +1701,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:13:28 GMT
+ - Tue, 03 Mar 2026 14:37:28 GMT
Expires:
- "0"
Pragma:
@@ -1663,13 +1719,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 43698b2b-e917-4558-7be1-891c7da3d655
+ - e8f577d4-6766-455a-5036-9588199e3517
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 320.219667ms
- - id: 24
+ duration: 98.442542ms
+ - id: 25
request:
proto: HTTP/1.1
proto_major: 1
@@ -1681,7 +1737,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"836852e5-0077-4bdb-91f7-d85831e92188"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"ab6fb3e6-3363-4f55-9329-c29b1c242435"}}
form: {}
headers:
Content-Type:
@@ -1689,7 +1745,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 5ea1450d-fea9-a633-dc44-46c2e7359cdf
+ - b681af92-647b-810a-10b9-a930d1fc590a
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1708,7 +1764,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"836852e5-0077-4bdb-91f7-d85831e92188","technicalName":"836852e5-0077-4bdb-91f7-d85831e92188","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Feb 18, 2026, 6:12:20 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:13:23 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"ab6fb3e6-3363-4f55-9329-c29b1c242435","technicalName":"ab6fb3e6-3363-4f55-9329-c29b1c242435","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:36:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:37:23 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1717,7 +1773,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:13:33 GMT
+ - Tue, 03 Mar 2026 14:37:33 GMT
Expires:
- "0"
Pragma:
@@ -1735,13 +1791,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 0592914c-82e4-4a43-4b1f-97fd2619d923
+ - e6e6d029-8d71-4885-6f16-e817dc6f74fd
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 302.244292ms
- - id: 25
+ duration: 97.754417ms
+ - id: 26
request:
proto: HTTP/1.1
proto_major: 1
@@ -1753,7 +1809,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"836852e5-0077-4bdb-91f7-d85831e92188"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"ab6fb3e6-3363-4f55-9329-c29b1c242435"}}
form: {}
headers:
Content-Type:
@@ -1761,7 +1817,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - a4bf13e1-8499-6631-3205-250694674aac
+ - 02b18fb6-e8ac-be77-502d-42debb3ec1cc
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1780,7 +1836,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"836852e5-0077-4bdb-91f7-d85831e92188","technicalName":"836852e5-0077-4bdb-91f7-d85831e92188","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Feb 18, 2026, 6:12:20 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:13:23 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"ab6fb3e6-3363-4f55-9329-c29b1c242435","technicalName":"ab6fb3e6-3363-4f55-9329-c29b1c242435","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:36:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:37:23 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1789,7 +1845,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:13:43 GMT
+ - Tue, 03 Mar 2026 14:37:43 GMT
Expires:
- "0"
Pragma:
@@ -1807,13 +1863,85 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - f895303b-adf0-4e32-57f2-3a3e64864cbf
+ - ea095fed-f9d9-43cf-55c9-35e7644d7dbe
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 323.618125ms
- - id: 26
+ duration: 89.772375ms
+ - id: 27
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 107
+ transfer_encoding: []
+ trailer: {}
+ host: canary.cli.btp.int.sap
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"ab6fb3e6-3363-4f55-9329-c29b1c242435"}}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Terraform/1.14.5 terraform-provider-btp/dev
+ X-Correlationid:
+ - dac9526c-0d94-959d-e2dd-44d2138d4250
+ X-Cpcli-Customidp:
+ - identityProvider
+ X-Cpcli-Format:
+ - json
+ X-Cpcli-Sessionid:
+ - redacted
+ X-Cpcli-Subdomain:
+ - terraformintcanary
+ url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?get
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"guid":"ab6fb3e6-3363-4f55-9329-c29b1c242435","technicalName":"ab6fb3e6-3363-4f55-9329-c29b1c242435","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:36:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:37:23 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
+ headers:
+ Cache-Control:
+ - no-cache, no-store, max-age=0, must-revalidate
+ Content-Security-Policy:
+ - default-src 'self'
+ Content-Type:
+ - application/json
+ Date:
+ - Tue, 03 Mar 2026 14:37:53 GMT
+ Expires:
+ - "0"
+ Pragma:
+ - no-cache
+ Referrer-Policy:
+ - no-referrer
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload;
+ X-Content-Type-Options:
+ - nosniff
+ X-Cpcli-Backend-Mediatype:
+ - application/json;charset=UTF-8
+ X-Cpcli-Backend-Status:
+ - "200"
+ X-Frame-Options:
+ - DENY
+ X-Vcap-Request-Id:
+ - 676e869a-1773-40dd-7e7b-d29550a877cb
+ X-Xss-Protection:
+ - "1"
+ status: 200 OK
+ code: 200
+ duration: 83.978792ms
+ - id: 28
request:
proto: HTTP/1.1
proto_major: 1
@@ -1825,7 +1953,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"836852e5-0077-4bdb-91f7-d85831e92188"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"ab6fb3e6-3363-4f55-9329-c29b1c242435"}}
form: {}
headers:
Content-Type:
@@ -1833,7 +1961,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - d35fddf4-0920-b140-91b3-cd0a0d051b29
+ - a5cd30e3-77ac-c69f-2b75-44bd1e25ab54
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1852,7 +1980,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"error":"Subaccount 836852e5-0077-4bdb-91f7-d85831e92188 not found [Error: 20004/404]"}'
+ body: '{"error":"Subaccount ab6fb3e6-3363-4f55-9329-c29b1c242435 not found [Error: 20004/404]"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1861,7 +1989,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:13:54 GMT
+ - Tue, 03 Mar 2026 14:38:03 GMT
Expires:
- "0"
Pragma:
@@ -1879,9 +2007,9 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - c10d400d-b0c1-4dc1-685a-0641a107fe35
+ - 4364c1f1-acd3-4c1b-5ab4-85c930e699c7
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 369.289459ms
+ duration: 110.478625ms
diff --git a/btp/provider/fixtures/resource_subaccount.used_for_production.yaml b/btp/provider/fixtures/resource_subaccount.used_for_production.yaml
index bfdfa709..9728269d 100644
--- a/btp/provider/fixtures/resource_subaccount.used_for_production.yaml
+++ b/btp/provider/fixtures/resource_subaccount.used_for_production.yaml
@@ -6,7 +6,7 @@ interactions:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -21,7 +21,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 2ec28a6f-d289-d3da-cec4-10a22ceab804
+ - a0d1ebc1-bd16-7266-fad4-765c1f6f94ea
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -32,20 +32,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:04:17 GMT
+ - Tue, 03 Mar 2026 14:18:40 GMT
Expires:
- "0"
Pragma:
@@ -61,18 +61,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 33f07deb-91a3-4fc4-678d-e17a20e98694
+ - bbb2b439-f049-4115-4948-0953d664f91b
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 1.461134084s
+ duration: 546.552751ms
- id: 1
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -87,7 +87,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 18a0f67a-3abf-de83-e7e9-221a9bd609b0
+ - f8054b65-a628-ff20-ad95-e13ae81a9f20
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -98,20 +98,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:04:17 GMT
+ - Tue, 03 Mar 2026 14:18:40 GMT
Expires:
- "0"
Pragma:
@@ -127,12 +127,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 847743a1-dfac-4e28-6324-68ed74f03ed6
+ - eadc7043-9abf-48f8-5fff-8c6e03c51a8a
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 481.249001ms
+ duration: 439.605417ms
- id: 2
request:
proto: HTTP/1.1
@@ -153,7 +153,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 9304f6a0-a1eb-a46a-95af-55e4b7332eb1
+ - ae106a9b-04ab-db93-e826-f19c3b759dd8
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -172,7 +172,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","technicalName":"N\/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"STARTED","createdDate":"Feb 18, 2026, 6:04:18 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:04:18 AM","contractStatus":"ACTIVE","jobId":"23893537"}'
+ body: '{"guid":"45212d22-7d6e-4b55-97ab-6e359aa9267f","technicalName":"N\/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"STARTED","createdDate":"Mar 3, 2026, 2:18:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:18:41 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test","jobId":"24061125"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -181,7 +181,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:04:18 GMT
+ - Tue, 03 Mar 2026 14:18:41 GMT
Expires:
- "0"
Pragma:
@@ -199,12 +199,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - bd174ab1-84d5-43f5-70f1-b326982d5a2a
+ - a2365627-deae-4161-6850-28b3844ed0cd
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 613.313917ms
+ duration: 426.116083ms
- id: 3
request:
proto: HTTP/1.1
@@ -217,7 +217,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"45212d22-7d6e-4b55-97ab-6e359aa9267f"}}
form: {}
headers:
Content-Type:
@@ -225,7 +225,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 154985fa-c746-a1a7-bd36-d1d8b1a49e2d
+ - 4f96c520-329a-369f-c470-aec38b22372d
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -244,7 +244,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Feb 18, 2026, 6:04:18 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:04:19 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"45212d22-7d6e-4b55-97ab-6e359aa9267f","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Mar 3, 2026, 2:18:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:18:43 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -253,7 +253,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:04:23 GMT
+ - Tue, 03 Mar 2026 14:18:46 GMT
Expires:
- "0"
Pragma:
@@ -271,12 +271,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - e56030ae-e154-4e6a-7801-003d11e03944
+ - c89b08fb-eeb6-4d09-61c2-0b538d28a669
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 334.084208ms
+ duration: 88.245166ms
- id: 4
request:
proto: HTTP/1.1
@@ -289,7 +289,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"45212d22-7d6e-4b55-97ab-6e359aa9267f"}}
form: {}
headers:
Content-Type:
@@ -297,7 +297,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 051ddbfd-459c-8a2f-fddd-908c16a06c95
+ - 0611e5c7-a88a-c87a-7775-f5e6b9f2c35f
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -316,7 +316,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Feb 18, 2026, 6:04:18 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:04:19 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"45212d22-7d6e-4b55-97ab-6e359aa9267f","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Mar 3, 2026, 2:18:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:18:43 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -325,7 +325,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:04:29 GMT
+ - Tue, 03 Mar 2026 14:18:51 GMT
Expires:
- "0"
Pragma:
@@ -343,12 +343,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 10e63964-657a-416e-4f5b-5fe6940e0767
+ - 714e3db5-9225-4cdc-48d5-ca4ff188c02d
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 310.709042ms
+ duration: 82.944625ms
- id: 5
request:
proto: HTTP/1.1
@@ -361,7 +361,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"45212d22-7d6e-4b55-97ab-6e359aa9267f"}}
form: {}
headers:
Content-Type:
@@ -369,7 +369,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - cdb3f073-f8fc-ad47-51f4-696e1f67715f
+ - ed0a1d0c-0a20-b396-8f38-8889bd6d3cb8
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -388,7 +388,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Feb 18, 2026, 6:04:18 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:04:19 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"45212d22-7d6e-4b55-97ab-6e359aa9267f","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Mar 3, 2026, 2:18:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:18:43 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -397,7 +397,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:04:39 GMT
+ - Tue, 03 Mar 2026 14:19:01 GMT
Expires:
- "0"
Pragma:
@@ -415,12 +415,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 84ed21a3-5874-4110-7103-ca3f4d4dab1f
+ - 8b0bac1b-bda4-46ae-6c93-de8061b2acf6
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 308.85225ms
+ duration: 80.2905ms
- id: 6
request:
proto: HTTP/1.1
@@ -433,7 +433,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"45212d22-7d6e-4b55-97ab-6e359aa9267f"}}
form: {}
headers:
Content-Type:
@@ -441,7 +441,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 2aaf239a-53e5-3d5e-305f-97c124f0796d
+ - 3524d3c6-2508-bed0-942a-7dd4decd9032
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -460,7 +460,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","technicalName":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"CREATING","stateMessage":"Assigning entitlements for subaccount.","createdDate":"Feb 18, 2026, 6:04:18 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:04:47 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"45212d22-7d6e-4b55-97ab-6e359aa9267f","technicalName":"45212d22-7d6e-4b55-97ab-6e359aa9267f","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"CREATING","stateMessage":"Assigning entitlements for subaccount.","createdDate":"Mar 3, 2026, 2:18:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:19:04 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -469,7 +469,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:04:49 GMT
+ - Tue, 03 Mar 2026 14:19:11 GMT
Expires:
- "0"
Pragma:
@@ -487,12 +487,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 061955ca-92c9-4b5b-45bb-f3637b2244b2
+ - 67d18e5c-9483-4313-461d-98aa625c91d3
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 296.922917ms
+ duration: 104.837125ms
- id: 7
request:
proto: HTTP/1.1
@@ -505,7 +505,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"45212d22-7d6e-4b55-97ab-6e359aa9267f"}}
form: {}
headers:
Content-Type:
@@ -513,7 +513,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - b666a3f2-3f6a-78a1-d453-1c1ca98eb2f6
+ - 99cb5896-b079-27b0-cc53-49a2c6240c1d
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -532,7 +532,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","technicalName":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:04:18 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:04:57 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"45212d22-7d6e-4b55-97ab-6e359aa9267f","technicalName":"45212d22-7d6e-4b55-97ab-6e359aa9267f","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:18:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:19:13 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -541,7 +541,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:05:00 GMT
+ - Tue, 03 Mar 2026 14:19:21 GMT
Expires:
- "0"
Pragma:
@@ -559,18 +559,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - c8867fa3-e12b-4f61-71e9-3191d09a8f3c
+ - cc988426-4931-4f9c-7b5d-b32368c5edbe
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 361.42925ms
+ duration: 163.661875ms
- id: 8
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -585,7 +585,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 9dd1f411-5cd7-30e3-7a1c-2bcbecc6c7bb
+ - 2b912bee-91e4-0234-45d3-ae8ba7c2b2ea
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -596,20 +596,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:05:01 GMT
+ - Tue, 03 Mar 2026 14:19:22 GMT
Expires:
- "0"
Pragma:
@@ -625,18 +625,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 98a74a31-17e5-4873-4902-d143abc60a4e
+ - ea386ffa-725d-469c-40e6-567fd9ff769e
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 1.317522042s
+ duration: 272.503584ms
- id: 9
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -651,7 +651,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - c785af47-390e-f8a2-477d-e5889770f525
+ - 183c2269-5b0b-043a-5af3-4f01cc992852
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -662,20 +662,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:05:02 GMT
+ - Tue, 03 Mar 2026 14:19:22 GMT
Expires:
- "0"
Pragma:
@@ -691,12 +691,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - d6cd22d2-8acf-4b72-452f-97dee602f1c9
+ - 7aedfd40-a780-4b53-43af-e28f3a154107
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 521.325584ms
+ duration: 476.3275ms
- id: 10
request:
proto: HTTP/1.1
@@ -709,7 +709,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"45212d22-7d6e-4b55-97ab-6e359aa9267f"}}
form: {}
headers:
Content-Type:
@@ -717,7 +717,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - bc116230-6e67-095b-a798-8984e546ca66
+ - 48a82703-8131-9585-8ab4-c2cd7638dffd
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -736,7 +736,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","technicalName":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:04:18 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:04:57 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"45212d22-7d6e-4b55-97ab-6e359aa9267f","technicalName":"45212d22-7d6e-4b55-97ab-6e359aa9267f","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:18:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:19:13 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -745,7 +745,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:05:02 GMT
+ - Tue, 03 Mar 2026 14:19:23 GMT
Expires:
- "0"
Pragma:
@@ -763,18 +763,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 5a67ae67-ccbc-41b9-599a-296bc3cdda3f
+ - e56493b3-f4e0-4e6b-566d-551dff9fa0c6
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 497.639709ms
+ duration: 217.3235ms
- id: 11
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -789,7 +789,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 02d11f03-7718-c1a2-f15e-d78cc2c5fcfd
+ - 7191b783-ecc7-841c-f0a2-2dca5bb2f1f9
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -800,20 +800,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:05:05 GMT
+ - Tue, 03 Mar 2026 14:19:23 GMT
Expires:
- "0"
Pragma:
@@ -829,12 +829,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - e905c725-4447-41a9-56d9-9ebf7ed5ebc6
+ - f2e5ee0b-ed83-4a58-654b-c8162c98aa79
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 2.890942127s
+ duration: 346.806ms
- id: 12
request:
proto: HTTP/1.1
@@ -847,7 +847,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"45212d22-7d6e-4b55-97ab-6e359aa9267f"}}
form: {}
headers:
Content-Type:
@@ -855,7 +855,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - c9025e9f-056a-6dbd-f061-915940129a92
+ - 9636e736-f676-8b2b-a8b5-e6122b257477
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -874,7 +874,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","technicalName":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:04:18 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:04:57 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"45212d22-7d6e-4b55-97ab-6e359aa9267f","technicalName":"45212d22-7d6e-4b55-97ab-6e359aa9267f","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:18:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:19:13 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -883,7 +883,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:05:06 GMT
+ - Tue, 03 Mar 2026 14:19:23 GMT
Expires:
- "0"
Pragma:
@@ -901,18 +901,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 60541799-5094-4bb9-549c-dcdcf2f0926c
+ - 43855d66-b588-4544-4dd2-f5626c2d8677
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 442.958958ms
+ duration: 212.777917ms
- id: 13
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -927,7 +927,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 4b91c61d-e479-9d41-9371-4482f3975cde
+ - bc5dcea8-08c7-0d77-b4a3-4021818098d4
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -938,20 +938,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:05:06 GMT
+ - Tue, 03 Mar 2026 14:19:24 GMT
Expires:
- "0"
Pragma:
@@ -967,12 +967,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 8d85a4f7-193a-4b72-4580-f48e3f675c56
+ - d9544957-540a-41d3-4b57-4cb2555b1924
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 465.419792ms
+ duration: 374.285208ms
- id: 14
request:
proto: HTTP/1.1
@@ -985,7 +985,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"betaEnabled":"false","directoryID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"Integration Test Acc Dyn","globalAccount":"terraformintcanary","labels":"{}","subaccount":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","usedForProduction":"true"}}
+ {"paramValues":{"betaEnabled":"false","directoryID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"Integration Test Acc Dyn","globalAccount":"terraformintcanary","labels":"{}","subaccount":"45212d22-7d6e-4b55-97ab-6e359aa9267f","usedForProduction":"true"}}
form: {}
headers:
Content-Type:
@@ -993,7 +993,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 72bf265d-806e-2067-054b-bce7bb906596
+ - fffb9661-8696-69b0-310a-3da66cc0d717
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1012,7 +1012,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","technicalName":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","description":null,"state":"OK","stateMessage":"Subaccount created.","contentAutomationState":null,"contentAutomationStateDetails":null,"createdDate":1771394658361,"createdBy":"john.doe@int.test","modifiedDate":1771394707017,"contractStatus":"ACTIVE"}'
+ body: '{"guid":"45212d22-7d6e-4b55-97ab-6e359aa9267f","technicalName":"45212d22-7d6e-4b55-97ab-6e359aa9267f","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","description":null,"state":"OK","stateMessage":"Subaccount created.","contentAutomationState":null,"contentAutomationStateDetails":null,"createdDate":1772547521335,"createdBy":"john.doe@int.test","modifiedDate":1772547564404,"contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1021,7 +1021,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:05:07 GMT
+ - Tue, 03 Mar 2026 14:19:24 GMT
Expires:
- "0"
Pragma:
@@ -1039,12 +1039,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - d7a32617-ee89-4aa1-5b15-20142f9756c1
+ - dfe315fc-b58b-49ae-5fb7-ab9d04073163
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 597.359292ms
+ duration: 363.612916ms
- id: 15
request:
proto: HTTP/1.1
@@ -1057,7 +1057,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"45212d22-7d6e-4b55-97ab-6e359aa9267f"}}
form: {}
headers:
Content-Type:
@@ -1065,7 +1065,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 6349e73c-69e1-1176-fe99-d25958ecdb7d
+ - 00228d4c-f102-5a17-84a5-9f199bc4d302
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1084,7 +1084,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","technicalName":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:04:18 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:05:07 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"45212d22-7d6e-4b55-97ab-6e359aa9267f","technicalName":"45212d22-7d6e-4b55-97ab-6e359aa9267f","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:18:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:19:24 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1093,7 +1093,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:05:12 GMT
+ - Tue, 03 Mar 2026 14:19:29 GMT
Expires:
- "0"
Pragma:
@@ -1111,18 +1111,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 009d37e5-1788-46a7-559e-db4d2ed853a8
+ - 23cd5a16-e94c-4706-63df-e23539c6cadf
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 292.4425ms
+ duration: 101.157708ms
- id: 16
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -1137,7 +1137,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 48fba9be-d9e4-2643-8ade-209c59a81448
+ - b40f6faf-1a61-023f-2c9b-701fa96801fb
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -1148,20 +1148,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:05:14 GMT
+ - Tue, 03 Mar 2026 14:19:30 GMT
Expires:
- "0"
Pragma:
@@ -1177,18 +1177,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 69b91420-7d0a-4ea5-7bd2-17ae5e6ce431
+ - 26e16416-522b-4fa7-63fc-af22d1289f53
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 2.022196626s
+ duration: 626.785584ms
- id: 17
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -1203,7 +1203,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 0cf3f568-a1d5-10e9-b458-a23544af4261
+ - 91bf2fbf-ee20-c9a1-90eb-3c73b55d22c4
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -1214,20 +1214,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:05:15 GMT
+ - Tue, 03 Mar 2026 14:19:30 GMT
Expires:
- "0"
Pragma:
@@ -1243,12 +1243,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 7cee961b-ca67-4340-59f1-4d3eaf15e9e9
+ - e4079ffe-34e1-468f-6df6-40dfd8738a9e
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 440.386042ms
+ duration: 563.604667ms
- id: 18
request:
proto: HTTP/1.1
@@ -1261,7 +1261,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"45212d22-7d6e-4b55-97ab-6e359aa9267f"}}
form: {}
headers:
Content-Type:
@@ -1269,7 +1269,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 46e0b2f4-1cf6-b15c-442e-f088c6c4397d
+ - 04d6fa85-5a68-531c-04ce-cda5d1a61d69
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1288,7 +1288,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","technicalName":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:04:18 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:05:07 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"45212d22-7d6e-4b55-97ab-6e359aa9267f","technicalName":"45212d22-7d6e-4b55-97ab-6e359aa9267f","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:18:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:19:24 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1297,7 +1297,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:05:15 GMT
+ - Tue, 03 Mar 2026 14:19:31 GMT
Expires:
- "0"
Pragma:
@@ -1315,18 +1315,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 3699067e-1d12-44ab-55b5-84ff427f4394
+ - 29f63ef6-8b3f-4af9-40ad-78a59edcf4b9
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 450.548042ms
+ duration: 206.396959ms
- id: 19
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -1341,7 +1341,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - b0bc1172-5363-e554-4bef-69cac5fe0ad3
+ - f3d6c7dc-110f-99c3-7007-2de7fa095d69
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -1352,20 +1352,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:05:19 GMT
+ - Tue, 03 Mar 2026 14:19:31 GMT
Expires:
- "0"
Pragma:
@@ -1381,12 +1381,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - ee84b790-0a16-4606-6b6b-ed0e27234bbe
+ - 3a31d4e0-3616-4f64-74bc-b29eb920d85f
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 3.86243746s
+ duration: 252.292542ms
- id: 20
request:
proto: HTTP/1.1
@@ -1399,7 +1399,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"45212d22-7d6e-4b55-97ab-6e359aa9267f"}}
form: {}
headers:
Content-Type:
@@ -1407,7 +1407,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - b51a8ca2-95fa-ca9a-8bc9-9eb57eb9975c
+ - 895982d4-490d-7e59-93b9-a284189e7a6f
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1426,7 +1426,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","technicalName":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:04:18 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:05:07 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"45212d22-7d6e-4b55-97ab-6e359aa9267f","technicalName":"45212d22-7d6e-4b55-97ab-6e359aa9267f","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:18:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:19:24 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1435,7 +1435,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:05:20 GMT
+ - Tue, 03 Mar 2026 14:19:31 GMT
Expires:
- "0"
Pragma:
@@ -1453,18 +1453,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 3ed54812-e8b4-41f2-6d4e-ea2cc17d00db
+ - a8db07ce-e2d8-48d5-6c9b-c287a572e9e6
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 456.294ms
+ duration: 270.749833ms
- id: 21
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -1479,7 +1479,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - b3abb40e-bc3f-8a68-adf3-7eac049d8e63
+ - 4c0c8a6a-6afc-3310-627e-335c7df53dca
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -1490,20 +1490,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:05:23 GMT
+ - Tue, 03 Mar 2026 14:19:32 GMT
Expires:
- "0"
Pragma:
@@ -1519,18 +1519,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - c0960f8a-7537-4516-686b-2d7e00bf1073
+ - 454250cb-d533-45c1-4086-f51a510857f9
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 3.688854169s
+ duration: 334.769ms
- id: 22
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -1545,7 +1545,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 6cba5513-2692-01b6-f1e5-ddb594919d80
+ - c8900e5d-3851-b94e-7a9b-ff713c41902e
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -1556,20 +1556,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:05:24 GMT
+ - Tue, 03 Mar 2026 14:19:32 GMT
Expires:
- "0"
Pragma:
@@ -1585,12 +1585,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - c09f70e0-77a7-4a44-7a5a-0f8269e0b657
+ - 7b18821b-2e64-4fbf-5f87-ee2c46f43349
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 477.952833ms
+ duration: 355.453459ms
- id: 23
request:
proto: HTTP/1.1
@@ -1611,7 +1611,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - c747233d-398b-a8aa-87f0-c2fcfe012003
+ - 89901312-fad3-5b38-ec7c-7929c89343c3
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1630,7 +1630,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"commercialModel":"Subscription","consumptionBased":false,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101000297","useFor":"Testing","origin":"OPERATOR","guid":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"terraform-integration-canary","description":"Global Account for Integration tests for the Terraform provider for SAP BTP on Canary Landscape\nSee https://github.com/SAP/terraform-provider-btp ","createdDate":"May 11, 2023, 8:59:23 AM","modifiedDate":"Feb 10, 2026, 4:55:39 AM","children":[{"guid":"14870944-4832-4e76-83f7-d2913661cf6d","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-se-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 23, 2025, 5:52:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jan 23, 2025, 6:03:51 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"14870944-4832-4e76-83f7-d2913661cf6d","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"customProperties":[{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":"Label text 1"},{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"},{"guid":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-roles","description":"PLEASE DO NOT DELETE!! This dir is used for integration test","createdDate":"Jul 18, 2024, 6:49:00 AM","createdBy":"john.doe+2@int.test","modifiedDate":"Jul 18, 2024, 7:49:40 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"},{"guid":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 27, 2025, 6:50:51 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Jan 29, 2025, 6:17:41 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"},{"guid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements","createdDate":"Oct 6, 2023, 9:57:23 AM","createdBy":"john.doe+4@int.test","modifiedDate":"Feb 17, 2026, 7:48:19 AM","children":[{"guid":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentGuid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGUID":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements-stacked","createdDate":"Oct 6, 2023, 9:58:25 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Oct 6, 2023, 9:58:25 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+6@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"},{"guid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization","createdDate":"May 30, 2025, 2:23:53 PM","createdBy":"john.doe+7@int.test","modifiedDate":"May 30, 2025, 2:24:04 PM","children":[{"guid":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentGuid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization-stacked","createdDate":"May 30, 2025, 2:24:48 PM","createdBy":"john.doe+8@int.test","modifiedDate":"May 30, 2025, 2:24:48 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Directory created.","subdomain":"a9546df7-214e-4414-9191-3d6adfc9cb53","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Global account updated.","subdomain":"terraformintcanary","subaccounts":[{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+9@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE"},{"guid":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","technicalName":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:04:18 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:05:07 AM","contractStatus":"ACTIVE"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+10@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe+11@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+12@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+13@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE"},{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+14@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe+15@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+16@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE"}],"contractStatus":"ACTIVE"}'
+ body: '{"commercialModel":"Subscription","consumptionBased":false,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101000297","useFor":"Testing","origin":"OPERATOR","guid":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"terraform-integration-canary","description":"Global Account for Integration tests for the Terraform provider for SAP BTP on Canary Landscape\nSee https://github.com/SAP/terraform-provider-btp ","createdDate":"May 11, 2023, 8:59:23 AM","modifiedDate":"Feb 10, 2026, 4:55:39 AM","children":[{"guid":"14870944-4832-4e76-83f7-d2913661cf6d","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-se-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 23, 2025, 5:52:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jan 23, 2025, 6:03:51 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"14870944-4832-4e76-83f7-d2913661cf6d","directoryType":"PROJECT","directoryFeatures":["ENTITLEMENTS","DEFAULT","AUTHORIZATIONS"],"customProperties":[{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":"Label text 1"},{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"},{"guid":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-roles","description":"PLEASE DO NOT DELETE!! This dir is used for integration test","createdDate":"Jul 18, 2024, 6:49:00 AM","createdBy":"john.doe+2@int.test","modifiedDate":"Jul 18, 2024, 7:49:40 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","directoryType":"PROJECT","directoryFeatures":["ENTITLEMENTS","DEFAULT","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 27, 2025, 6:50:51 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Jan 29, 2025, 6:17:41 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","directoryType":"PROJECT","directoryFeatures":["ENTITLEMENTS","DEFAULT","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements","createdDate":"Oct 6, 2023, 9:57:23 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 17, 2026, 7:48:19 AM","children":[{"guid":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentGuid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGUID":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements-stacked","createdDate":"Oct 6, 2023, 9:58:25 AM","createdBy":"john.doe@int.test","modifiedDate":"Oct 6, 2023, 9:58:25 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+4@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+5@int.test"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","directoryType":"PROJECT","directoryFeatures":["ENTITLEMENTS","DEFAULT","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization","createdDate":"May 30, 2025, 2:23:53 PM","createdBy":"john.doe@int.test","modifiedDate":"May 30, 2025, 2:24:04 PM","children":[{"guid":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentGuid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization-stacked","createdDate":"May 30, 2025, 2:24:48 PM","createdBy":"john.doe@int.test","modifiedDate":"May 30, 2025, 2:24:48 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Directory created.","subdomain":"a9546df7-214e-4414-9191-3d6adfc9cb53","directoryType":"PROJECT","directoryFeatures":["ENTITLEMENTS","DEFAULT","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-disaster-revovery","description":"Directory conatining two paired DR subaccounts","createdDate":"Feb 27, 2026, 11:33:23 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:33:23 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"badbcbf8-eca7-4472-9f66-cb9887ba7c3d","technicalName":"badbcbf8-eca7-4472-9f66-cb9887ba7c3d","displayName":"integration-test-dr-subaccount-eu12","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-dr-subaccount-eu12-99p94dot","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 11:34:34 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:34:59 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"2dc1ecf1-786c-4f92-91f2-26650ab3ad28","technicalName":"2dc1ecf1-786c-4f92-91f2-26650ab3ad28","displayName":"integration-test-dr-to-be-paired-eu12","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-dr-to-be-paired-eu12-8tu9lgxa","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 12:59:03 PM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 12:59:34 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"f59b5902-d24c-446c-b245-92c814faa0d9","technicalName":"f59b5902-d24c-446c-b245-92c814faa0d9","displayName":"integration-test-dr-to-be-paired-eu10-canary","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu10-canary","subdomain":"integration-test-dr-to-be-paired-eu10-canacry-hqhkrthv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 12:58:30 PM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 12:59:17 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"608858ef-5829-4aa6-88e7-0e220ef1aaeb","technicalName":"608858ef-5829-4aa6-88e7-0e220ef1aaeb","displayName":"integration-test-dr-subaccount-eu10-canary","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu10-canary","subdomain":"integration-test-dr-subaccount-eu10-canary-ls0upaxs","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 11:34:09 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:34:29 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Global account updated.","subdomain":"terraformintcanary","subaccounts":[{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+6@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+7@int.test"},{"guid":"b7ed3f66-5b6d-4290-856c-099e9e3cbb1b","technicalName":"b7ed3f66-5b6d-4290-856c-099e9e3cbb1b","displayName":"integration-test-ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-ias-408hsvn1","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test bundled applications on the SAP Cloud Identity Services Provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 8:47:42 AM","createdBy":"john.doe+8@int.test","modifiedDate":"Feb 27, 2026, 8:48:09 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+9@int.test"},{"guid":"45212d22-7d6e-4b55-97ab-6e359aa9267f","technicalName":"45212d22-7d6e-4b55-97ab-6e359aa9267f","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:18:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:19:24 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+10@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+11@int.test"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+12@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+13@int.test"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+14@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+15@int.test"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+16@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+17@int.test"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+18@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+19@int.test"},{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe+20@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+21@int.test"}],"contractStatus":"ACTIVE"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1639,7 +1639,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:05:24 GMT
+ - Tue, 03 Mar 2026 14:19:32 GMT
Expires:
- "0"
Pragma:
@@ -1657,85 +1657,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 12c602c3-e10b-4662-40ab-8a0ffe5dc7d6
+ - 7fbc8234-b33c-4018-761e-fad648d0a936
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 424.921792ms
+ duration: 199.4785ms
- id: 24
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 145
- transfer_encoding: []
- trailer: {}
- host: canary.cli.btp.int.sap
- remote_addr: ""
- request_uri: ""
- body: |
- {"paramValues":{"confirm":"true","forceDelete":"true","globalAccount":"terraformintcanary","subaccount":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0"}}
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Terraform/1.14.5 terraform-provider-btp/dev
- X-Correlationid:
- - 68540a13-70a9-823b-75ce-9daaa448ffd4
- X-Cpcli-Customidp:
- - identityProvider
- X-Cpcli-Format:
- - json
- X-Cpcli-Sessionid:
- - redacted
- X-Cpcli-Subdomain:
- - terraformintcanary
- url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?delete
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: -1
- uncompressed: true
- body: '{"error":"Subaccount is marked as used for production and cannot be deleted with forceDelete=true [Error: 12003/400]"}'
- headers:
- Cache-Control:
- - no-cache, no-store, max-age=0, must-revalidate
- Content-Security-Policy:
- - default-src 'self'
- Content-Type:
- - application/json
- Date:
- - Wed, 18 Feb 2026 06:05:25 GMT
- Expires:
- - "0"
- Pragma:
- - no-cache
- Referrer-Policy:
- - no-referrer
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains; preload;
- X-Content-Type-Options:
- - nosniff
- X-Cpcli-Backend-Mediatype:
- - application/json
- X-Cpcli-Backend-Status:
- - "400"
- X-Frame-Options:
- - DENY
- X-Vcap-Request-Id:
- - a6077597-cdbd-47a3-70a1-e4da576841de
- X-Xss-Protection:
- - "1"
- status: 200 OK
- code: 200
- duration: 339.160625ms
- - id: 25
request:
proto: HTTP/1.1
proto_major: 1
@@ -1747,7 +1675,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"confirm":"true","forceDelete":"false","globalAccount":"terraformintcanary","subaccount":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0"}}
+ {"paramValues":{"confirm":"true","forceDelete":"false","globalAccount":"terraformintcanary","subaccount":"45212d22-7d6e-4b55-97ab-6e359aa9267f"}}
form: {}
headers:
Content-Type:
@@ -1755,7 +1683,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - ac439186-64ff-399f-fbb2-62ab028793b1
+ - e76232a8-95bb-bf59-a63c-8cb5a674bfd8
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1774,79 +1702,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","technicalName":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Delete subaccount entity","createdDate":"Feb 18, 2026, 6:04:18 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:05:07 AM","contractStatus":"ACTIVE","jobId":"23893555"}'
- headers:
- Cache-Control:
- - no-cache, no-store, max-age=0, must-revalidate
- Content-Security-Policy:
- - default-src 'self'
- Content-Type:
- - application/json
- Date:
- - Wed, 18 Feb 2026 06:05:25 GMT
- Expires:
- - "0"
- Pragma:
- - no-cache
- Referrer-Policy:
- - no-referrer
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains; preload;
- X-Content-Type-Options:
- - nosniff
- X-Cpcli-Backend-Mediatype:
- - application/json;charset=UTF-8
- X-Cpcli-Backend-Status:
- - "200"
- X-Frame-Options:
- - DENY
- X-Vcap-Request-Id:
- - 1e2b27a0-39a4-4ed9-795e-c83f254ef12d
- X-Xss-Protection:
- - "1"
- status: 200 OK
- code: 200
- duration: 683.641958ms
- - id: 26
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 107
- transfer_encoding: []
- trailer: {}
- host: canary.cli.btp.int.sap
- remote_addr: ""
- request_uri: ""
- body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0"}}
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Terraform/1.14.5 terraform-provider-btp/dev
- X-Correlationid:
- - 7232bc73-4f89-72da-0777-81d9bcc5a8bb
- X-Cpcli-Customidp:
- - identityProvider
- X-Cpcli-Format:
- - json
- X-Cpcli-Sessionid:
- - redacted
- X-Cpcli-Subdomain:
- - terraformintcanary
- url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?get
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: -1
- uncompressed: true
- body: '{"guid":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","technicalName":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Feb 18, 2026, 6:04:18 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:05:26 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"45212d22-7d6e-4b55-97ab-6e359aa9267f","technicalName":"45212d22-7d6e-4b55-97ab-6e359aa9267f","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Delete subaccount entity","createdDate":"Mar 3, 2026, 2:18:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:19:24 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test","jobId":"24061138"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1855,7 +1711,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:05:31 GMT
+ - Tue, 03 Mar 2026 14:19:33 GMT
Expires:
- "0"
Pragma:
@@ -1873,13 +1729,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 29991055-473f-4440-72ad-f0a19f39843f
+ - 0b385b86-0cbb-4625-53f9-1835368214fc
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 316.718875ms
- - id: 27
+ duration: 501.50375ms
+ - id: 25
request:
proto: HTTP/1.1
proto_major: 1
@@ -1891,7 +1747,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"45212d22-7d6e-4b55-97ab-6e359aa9267f"}}
form: {}
headers:
Content-Type:
@@ -1899,7 +1755,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - e1ef66c5-d9e3-6648-6407-6d8f1b0ceaa8
+ - f06114b9-c498-5ec3-6ff4-49014b2aa314
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1918,7 +1774,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","technicalName":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Feb 18, 2026, 6:04:18 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:05:26 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"45212d22-7d6e-4b55-97ab-6e359aa9267f","technicalName":"45212d22-7d6e-4b55-97ab-6e359aa9267f","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:18:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:19:34 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1927,7 +1783,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:05:36 GMT
+ - Tue, 03 Mar 2026 14:19:38 GMT
Expires:
- "0"
Pragma:
@@ -1945,13 +1801,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 68b81ced-a76b-4f0b-7d37-a9ef690d67b6
+ - f5bf9450-b1ed-4101-5fbf-779c41fb36cb
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 334.109667ms
- - id: 28
+ duration: 77.575334ms
+ - id: 26
request:
proto: HTTP/1.1
proto_major: 1
@@ -1963,7 +1819,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"45212d22-7d6e-4b55-97ab-6e359aa9267f"}}
form: {}
headers:
Content-Type:
@@ -1971,7 +1827,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 27fa2188-f94e-8168-1e82-691b31bd8710
+ - 007723c9-9e63-45c9-5feb-b8876e48dd3d
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1990,7 +1846,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","technicalName":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Feb 18, 2026, 6:04:18 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:05:26 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"45212d22-7d6e-4b55-97ab-6e359aa9267f","technicalName":"45212d22-7d6e-4b55-97ab-6e359aa9267f","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:18:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:19:34 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1999,7 +1855,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:05:46 GMT
+ - Tue, 03 Mar 2026 14:19:43 GMT
Expires:
- "0"
Pragma:
@@ -2017,13 +1873,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - f64378c7-e30c-4b83-7026-60613f45f790
+ - 6b433142-7817-4022-6534-9d36afbd2dc2
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 314.259833ms
- - id: 29
+ duration: 88.034875ms
+ - id: 27
request:
proto: HTTP/1.1
proto_major: 1
@@ -2035,7 +1891,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"45212d22-7d6e-4b55-97ab-6e359aa9267f"}}
form: {}
headers:
Content-Type:
@@ -2043,7 +1899,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - e272fabd-9138-d6c1-48b7-e82aa01c10cb
+ - 120373e0-ee63-6897-9448-fb396d75c863
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -2062,7 +1918,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","technicalName":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Feb 18, 2026, 6:04:18 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:05:26 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"45212d22-7d6e-4b55-97ab-6e359aa9267f","technicalName":"45212d22-7d6e-4b55-97ab-6e359aa9267f","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:18:41 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:19:34 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -2071,7 +1927,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:05:57 GMT
+ - Tue, 03 Mar 2026 14:19:53 GMT
Expires:
- "0"
Pragma:
@@ -2089,13 +1945,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - a2f395d4-a25b-4670-4b55-9a1a87407827
+ - ac1ddfc6-cb3b-44ac-5242-6623bb79b981
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 304.863458ms
- - id: 30
+ duration: 74.04ms
+ - id: 28
request:
proto: HTTP/1.1
proto_major: 1
@@ -2107,7 +1963,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"5d1916cc-1367-483e-b3a3-d5a7ea9c8da0"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"45212d22-7d6e-4b55-97ab-6e359aa9267f"}}
form: {}
headers:
Content-Type:
@@ -2115,7 +1971,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 2bfbee2d-b478-63d4-7fd5-0f4c666e2cae
+ - d40725d0-14bb-137a-9e64-5f84249249e7
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -2134,7 +1990,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"error":"Subaccount 5d1916cc-1367-483e-b3a3-d5a7ea9c8da0 not found [Error: 20004/404]"}'
+ body: '{"error":"Subaccount 45212d22-7d6e-4b55-97ab-6e359aa9267f not found [Error: 20004/404]"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -2143,7 +1999,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:06:07 GMT
+ - Tue, 03 Mar 2026 14:20:03 GMT
Expires:
- "0"
Pragma:
@@ -2161,9 +2017,9 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - b0ee81c2-0d9b-439c-7b81-14855b11af2d
+ - 20e0b321-7818-4afd-4cea-6500fc868d96
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 368.302625ms
+ duration: 151.453167ms
diff --git a/btp/provider/fixtures/resource_subaccount.with_managed_parent.yaml b/btp/provider/fixtures/resource_subaccount.with_managed_parent.yaml
index a602ca8a..7d1ba718 100644
--- a/btp/provider/fixtures/resource_subaccount.with_managed_parent.yaml
+++ b/btp/provider/fixtures/resource_subaccount.with_managed_parent.yaml
@@ -6,7 +6,7 @@ interactions:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -19,9 +19,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 6dd00cc2-006c-7e52-2d51-e4f86458a86f
+ - 501e27da-6fa9-60d2-59b5-7fa9a21b476c
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -32,20 +32,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 116
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":"redacted"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "116"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:12:29 GMT
+ - Tue, 03 Mar 2026 14:33:57 GMT
Expires:
- "0"
Pragma:
@@ -61,18 +61,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - cbdd7ebf-4132-4e42-4893-4555bfdf7179
+ - d92d7b39-1feb-4815-4d76-03bd8b6653c0
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 679.21125ms
+ duration: 416.946709ms
- id: 1
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -85,9 +85,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 20c48f5d-4df1-f1be-f0d6-8a18bb3d5edf
+ - f2142032-f283-0ac5-e704-e8affa7fb4c6
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -98,20 +98,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 116
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":"redacted"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "116"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:12:30 GMT
+ - Tue, 03 Mar 2026 14:33:58 GMT
Expires:
- "0"
Pragma:
@@ -127,12 +127,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 528e7855-b32c-4115-41a2-777a75e89172
+ - 1955b37c-f354-4aed-6713-0d841a5b5f1a
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 574.890333ms
+ duration: 323.333334ms
- id: 2
request:
proto: HTTP/1.1
@@ -151,9 +151,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 84b2763f-6c3c-d4b4-9bc8-ce48555f8b2d
+ - 3dc2e970-ba56-e42d-7f91-186bccb62375
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -172,7 +172,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"commercialModel":"Subscription","consumptionBased":false,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101006540","useFor":"Testing","origin":"OPERATOR","guid":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"terraform-integration-canary","description":"Global Account for Integration tests for the Terraform provider for SAP BTP on Canary Landscape\nSee https://github.com/SAP/terraform-provider-btp ","createdDate":"May 11, 2023, 8:59:23 AM","modifiedDate":"Sep 29, 2025, 8:41:51 AM","children":[{"guid":"14870944-4832-4e76-83f7-d2913661cf6d","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-se-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 23, 2025, 5:52:18 AM","createdBy":"john.doe@int.test","modifiedDate":"Jan 23, 2025, 6:03:51 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"14870944-4832-4e76-83f7-d2913661cf6d","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","ENTITLEMENTS","DEFAULT"],"customProperties":[{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":"Label text 1"},{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"},{"guid":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-roles","description":"PLEASE DO NOT DELETE!! This dir is used for integration test","createdDate":"Jul 18, 2024, 6:49:00 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jul 18, 2024, 7:49:40 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","ENTITLEMENTS","DEFAULT"],"contractStatus":"ACTIVE"},{"guid":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 27, 2025, 6:50:51 AM","createdBy":"john.doe@int.test","modifiedDate":"Jan 29, 2025, 6:17:41 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","ENTITLEMENTS","DEFAULT"],"contractStatus":"ACTIVE"},{"guid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements","createdDate":"Oct 6, 2023, 9:57:23 AM","createdBy":"john.doe+2@int.test","modifiedDate":"Oct 6, 2023, 10:00:32 AM","children":[{"guid":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentGuid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGUID":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentType":"GROUP","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements-stacked","createdDate":"Oct 6, 2023, 9:58:25 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Oct 6, 2023, 9:58:25 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+4@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Updated features assigned to directory.","directoryType":"GROUP","directoryFeatures":["ENTITLEMENTS","DEFAULT"],"contractStatus":"ACTIVE"},{"guid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization","createdDate":"May 30, 2025, 2:23:53 PM","createdBy":"john.doe+5@int.test","modifiedDate":"May 30, 2025, 2:24:04 PM","children":[{"guid":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentGuid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization-stacked","createdDate":"May 30, 2025, 2:24:48 PM","createdBy":"john.doe+6@int.test","modifiedDate":"May 30, 2025, 2:24:48 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Directory created.","subdomain":"a9546df7-214e-4414-9191-3d6adfc9cb53","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","ENTITLEMENTS","DEFAULT"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Global account updated.","subdomain":"terraformintcanary","subaccounts":[{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe+7@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+8@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe+9@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+10@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+11@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+12@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM"},{"guid":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","technicalName":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","displayName":"dcmcanary_20241108084819","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"btp-gp43a2b332-be5b-e3f8-50fb-77c947700e54","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 8, 2024, 8:48:21 AM","createdBy":"DL_65DDA8EBA97EAA0134EEB5DC@global.corp.sap","modifiedDate":"Nov 8, 2024, 8:48:43 AM"}],"contractStatus":"ACTIVE"}'
+ body: '{"commercialModel":"Subscription","consumptionBased":false,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101000297","useFor":"Testing","origin":"OPERATOR","guid":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"terraform-integration-canary","description":"Global Account for Integration tests for the Terraform provider for SAP BTP on Canary Landscape\nSee https://github.com/SAP/terraform-provider-btp ","createdDate":"May 11, 2023, 8:59:23 AM","modifiedDate":"Feb 10, 2026, 4:55:39 AM","children":[{"guid":"14870944-4832-4e76-83f7-d2913661cf6d","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-se-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 23, 2025, 5:52:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jan 23, 2025, 6:03:51 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"14870944-4832-4e76-83f7-d2913661cf6d","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"customProperties":[{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":"Label text 1"},{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"},{"guid":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-roles","description":"PLEASE DO NOT DELETE!! This dir is used for integration test","createdDate":"Jul 18, 2024, 6:49:00 AM","createdBy":"john.doe+2@int.test","modifiedDate":"Jul 18, 2024, 7:49:40 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 27, 2025, 6:50:51 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Jan 29, 2025, 6:17:41 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements","createdDate":"Oct 6, 2023, 9:57:23 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 17, 2026, 7:48:19 AM","children":[{"guid":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentGuid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGUID":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements-stacked","createdDate":"Oct 6, 2023, 9:58:25 AM","createdBy":"john.doe@int.test","modifiedDate":"Oct 6, 2023, 9:58:25 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+4@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+5@int.test"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization","createdDate":"May 30, 2025, 2:23:53 PM","createdBy":"john.doe@int.test","modifiedDate":"May 30, 2025, 2:24:04 PM","children":[{"guid":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentGuid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization-stacked","createdDate":"May 30, 2025, 2:24:48 PM","createdBy":"john.doe@int.test","modifiedDate":"May 30, 2025, 2:24:48 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Directory created.","subdomain":"a9546df7-214e-4414-9191-3d6adfc9cb53","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-disaster-revovery","description":"Directory conatining two paired DR subaccounts","createdDate":"Feb 27, 2026, 11:33:23 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:33:23 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"608858ef-5829-4aa6-88e7-0e220ef1aaeb","technicalName":"608858ef-5829-4aa6-88e7-0e220ef1aaeb","displayName":"integration-test-dr-subaccount-eu10-canary","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu10-canary","subdomain":"integration-test-dr-subaccount-eu10-canary-ls0upaxs","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 11:34:09 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:34:29 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"2dc1ecf1-786c-4f92-91f2-26650ab3ad28","technicalName":"2dc1ecf1-786c-4f92-91f2-26650ab3ad28","displayName":"integration-test-dr-to-be-paired-eu12","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-dr-to-be-paired-eu12-8tu9lgxa","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 12:59:03 PM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 12:59:34 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"f59b5902-d24c-446c-b245-92c814faa0d9","technicalName":"f59b5902-d24c-446c-b245-92c814faa0d9","displayName":"integration-test-dr-to-be-paired-eu10-canary","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu10-canary","subdomain":"integration-test-dr-to-be-paired-eu10-canacry-hqhkrthv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 12:58:30 PM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 12:59:17 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"badbcbf8-eca7-4472-9f66-cb9887ba7c3d","technicalName":"badbcbf8-eca7-4472-9f66-cb9887ba7c3d","displayName":"integration-test-dr-subaccount-eu12","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-dr-subaccount-eu12-99p94dot","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 11:34:34 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:34:59 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Global account updated.","subdomain":"terraformintcanary","subaccounts":[{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe+6@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+7@int.test"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+8@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+9@int.test"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+10@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+11@int.test"},{"guid":"b7ed3f66-5b6d-4290-856c-099e9e3cbb1b","technicalName":"b7ed3f66-5b6d-4290-856c-099e9e3cbb1b","displayName":"integration-test-ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-ias-408hsvn1","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test bundled applications on the SAP Cloud Identity Services Provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 8:47:42 AM","createdBy":"john.doe+12@int.test","modifiedDate":"Feb 27, 2026, 8:48:09 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+13@int.test"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+14@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+15@int.test"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+16@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+17@int.test"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+18@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+19@int.test"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+20@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+21@int.test"}],"contractStatus":"ACTIVE"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -181,7 +181,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:12:30 GMT
+ - Tue, 03 Mar 2026 14:33:58 GMT
Expires:
- "0"
Pragma:
@@ -199,12 +199,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 40649602-f6c3-4315-5c40-3b54cd3cf531
+ - 2fe277f3-7adc-4a0e-7ca0-e7ebe4c23d2e
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 567.843458ms
+ duration: 228.76825ms
- id: 3
request:
proto: HTTP/1.1
@@ -223,9 +223,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - b9965794-4f45-a6bf-2652-429f01afd87c
+ - 857bd341-318d-c22f-4678-2c8b878d9f27
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -244,7 +244,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"3ab098c6-3005-4660-85e6-5c4867f6a05b","technicalName":"N\/A","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","parentFeatures":["AUTHORIZATIONS","ENTITLEMENTS","DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"STARTED","createdDate":"Nov 10, 2025, 6:12:31 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:12:31 AM","jobId":"22409713"}'
+ body: '{"guid":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6","technicalName":"N\/A","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","parentFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"STARTED","createdDate":"Mar 3, 2026, 2:33:58 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:33:58 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test","jobId":"24061253"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -253,7 +253,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:12:31 GMT
+ - Tue, 03 Mar 2026 14:33:58 GMT
Expires:
- "0"
Pragma:
@@ -271,12 +271,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - bca0608a-75c9-477f-408b-d6091fe65163
+ - bd08ee73-09ea-4fd4-4f47-e54fe841813f
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 566.389416ms
+ duration: 271.468292ms
- id: 4
request:
proto: HTTP/1.1
@@ -289,15 +289,15 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"3ab098c6-3005-4660-85e6-5c4867f6a05b"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 3811c161-7d0e-d8d6-cd3c-6bab3edff2b4
+ - 8b4cce00-71ca-7f92-b924-c870a4d356c8
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -316,7 +316,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"3ab098c6-3005-4660-85e6-5c4867f6a05b","technicalName":"N/A","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Nov 10, 2025, 6:12:31 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:12:32 AM"}'
+ body: '{"guid":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6","technicalName":"N/A","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["ENTITLEMENTS","DEFAULT","AUTHORIZATIONS"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Mar 3, 2026, 2:33:58 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:33:59 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -325,7 +325,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:12:36 GMT
+ - Tue, 03 Mar 2026 14:34:03 GMT
Expires:
- "0"
Pragma:
@@ -343,12 +343,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 8dea8f1d-983c-4c1c-5203-48558566ebfa
+ - 6bbb746a-e6db-4ec6-71ad-e8f87b7b9a17
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 421.550584ms
+ duration: 93.459625ms
- id: 5
request:
proto: HTTP/1.1
@@ -361,15 +361,15 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"3ab098c6-3005-4660-85e6-5c4867f6a05b"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 6b487b0c-c732-8223-4cb9-82e2e8b49d60
+ - caa37970-af6e-ed4c-f94b-532c0c327edd
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -388,7 +388,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"3ab098c6-3005-4660-85e6-5c4867f6a05b","technicalName":"N/A","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Nov 10, 2025, 6:12:31 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:12:32 AM"}'
+ body: '{"guid":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6","technicalName":"N/A","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Mar 3, 2026, 2:33:58 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:33:59 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -397,7 +397,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:12:42 GMT
+ - Tue, 03 Mar 2026 14:34:08 GMT
Expires:
- "0"
Pragma:
@@ -415,12 +415,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - eebf962e-50e2-42c2-6a1f-754d5eccea53
+ - 8c27511f-9b55-4001-76be-f4d912cfb9a0
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 427.189459ms
+ duration: 99.692291ms
- id: 6
request:
proto: HTTP/1.1
@@ -433,15 +433,15 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"3ab098c6-3005-4660-85e6-5c4867f6a05b"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - d05171fd-f7c1-96d9-0f11-87657edf36bc
+ - 355d23f4-16a7-783d-f030-886bfadca834
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -460,7 +460,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"3ab098c6-3005-4660-85e6-5c4867f6a05b","technicalName":"N/A","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["AUTHORIZATIONS","ENTITLEMENTS","DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Nov 10, 2025, 6:12:31 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:12:32 AM"}'
+ body: '{"guid":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6","technicalName":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["ENTITLEMENTS","DEFAULT","AUTHORIZATIONS"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"CREATING","stateMessage":"Assigning entitlements for subaccount.","createdDate":"Mar 3, 2026, 2:33:58 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:34:17 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -469,7 +469,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:12:52 GMT
+ - Tue, 03 Mar 2026 14:34:18 GMT
Expires:
- "0"
Pragma:
@@ -487,12 +487,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 2aaa851c-f5e2-427a-683b-6e38d634386c
+ - 3cf59624-c394-41d6-7b84-261225ef5439
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 427.035375ms
+ duration: 78.433833ms
- id: 7
request:
proto: HTTP/1.1
@@ -505,15 +505,15 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"3ab098c6-3005-4660-85e6-5c4867f6a05b"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - ad09f83a-960e-ec8e-9a91-321faaa02051
+ - 5731c009-a859-6636-b12a-dc222873ef8d
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -532,7 +532,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"3ab098c6-3005-4660-85e6-5c4867f6a05b","technicalName":"3ab098c6-3005-4660-85e6-5c4867f6a05b","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["AUTHORIZATIONS","ENTITLEMENTS","DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"CREATING","stateMessage":"Assigning entitlements for subaccount.","createdDate":"Nov 10, 2025, 6:12:31 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:12:53 AM"}'
+ body: '{"guid":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6","technicalName":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["ENTITLEMENTS","DEFAULT","AUTHORIZATIONS"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:33:58 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:34:28 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -541,7 +541,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:13:02 GMT
+ - Tue, 03 Mar 2026 14:34:29 GMT
Expires:
- "0"
Pragma:
@@ -559,90 +559,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - a3a62c40-d793-435f-74fa-05c060ecbdd2
+ - d21ddf84-2434-4290-6aa1-a28431f0beac
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 425.643417ms
+ duration: 86.936875ms
- id: 8
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 107
- transfer_encoding: []
- trailer: {}
- host: canary.cli.btp.int.sap
- remote_addr: ""
- request_uri: ""
- body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"3ab098c6-3005-4660-85e6-5c4867f6a05b"}}
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
- X-Correlationid:
- - 52f911b2-b9d9-e5c0-57d2-b3531a4fc113
- X-Cpcli-Customidp:
- - identityProvider
- X-Cpcli-Format:
- - json
- X-Cpcli-Sessionid:
- - redacted
- X-Cpcli-Subdomain:
- - terraformintcanary
- url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?get
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: -1
- uncompressed: true
- body: '{"guid":"3ab098c6-3005-4660-85e6-5c4867f6a05b","technicalName":"3ab098c6-3005-4660-85e6-5c4867f6a05b","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 10, 2025, 6:12:31 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:13:05 AM"}'
- headers:
- Cache-Control:
- - no-cache, no-store, max-age=0, must-revalidate
- Content-Security-Policy:
- - default-src 'self'
- Content-Type:
- - application/json
- Date:
- - Mon, 10 Nov 2025 06:13:13 GMT
- Expires:
- - "0"
- Pragma:
- - no-cache
- Referrer-Policy:
- - no-referrer
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains; preload;
- X-Content-Type-Options:
- - nosniff
- X-Cpcli-Backend-Mediatype:
- - application/json;charset=UTF-8
- X-Cpcli-Backend-Status:
- - "200"
- X-Frame-Options:
- - DENY
- X-Vcap-Request-Id:
- - ff10cdbb-343c-4bd5-7322-847116f9e36c
- X-Xss-Protection:
- - "1"
- status: 200 OK
- code: 200
- duration: 422.860001ms
- - id: 9
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -655,9 +583,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - cde2d9cf-fe1e-29b1-6f0a-78e08bae25e8
+ - 5688da47-f955-6a4a-eb8e-6705286a4ab9
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -668,20 +596,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 116
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":"redacted"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "116"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:13:14 GMT
+ - Tue, 03 Mar 2026 14:34:29 GMT
Expires:
- "0"
Pragma:
@@ -697,18 +625,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 67a3fb1f-6c38-4efd-771e-91d0e30c6df4
+ - 3ebe0075-94f1-404a-47c0-91f8aebf70cf
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 670.924584ms
- - id: 10
+ duration: 417.48425ms
+ - id: 9
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -721,9 +649,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 7fd2df8f-b227-a276-4e5f-a26e05e9d0ba
+ - a38b564e-9561-095e-1e91-04f3f77b6f47
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -734,20 +662,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 116
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":"redacted"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "116"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:13:14 GMT
+ - Tue, 03 Mar 2026 14:34:29 GMT
Expires:
- "0"
Pragma:
@@ -763,13 +691,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 85a740dc-0a98-4fd3-5d9b-6ba699f214e3
+ - f26df097-fd4b-4c3b-4751-556e48b4c8b9
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 555.97625ms
- - id: 11
+ duration: 277.997ms
+ - id: 10
request:
proto: HTTP/1.1
proto_major: 1
@@ -781,15 +709,15 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"3ab098c6-3005-4660-85e6-5c4867f6a05b"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - d0d0ce50-b9d4-c52e-0d85-869180809360
+ - be524799-b09d-7867-9010-2e26055e685b
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -808,7 +736,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"3ab098c6-3005-4660-85e6-5c4867f6a05b","technicalName":"3ab098c6-3005-4660-85e6-5c4867f6a05b","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 10, 2025, 6:12:31 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:13:05 AM"}'
+ body: '{"guid":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6","technicalName":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:33:58 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:34:28 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -817,7 +745,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:13:15 GMT
+ - Tue, 03 Mar 2026 14:34:30 GMT
Expires:
- "0"
Pragma:
@@ -835,18 +763,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 964aae4d-8098-4abc-7730-060843256399
+ - 298518da-3b1a-4dc9-6029-a26776d66fbf
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 540.121833ms
- - id: 12
+ duration: 206.301708ms
+ - id: 11
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -859,9 +787,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 0ff4acb4-fb87-f2d0-29d4-99724b0e84b6
+ - 28666557-e8ef-8a3c-6b27-b4d5a4860991
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -872,20 +800,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 116
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":"redacted"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "116"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:13:15 GMT
+ - Tue, 03 Mar 2026 14:34:30 GMT
Expires:
- "0"
Pragma:
@@ -901,18 +829,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 8bd416fe-56de-4d6c-700f-ec0559569b49
+ - 316efb60-e9c4-4867-40b8-40f067428839
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 555.7285ms
- - id: 13
+ duration: 391.579792ms
+ - id: 12
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -925,9 +853,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 57314ab8-0b5a-ad2b-e148-4da32e1d414f
+ - e32e5abc-c802-7e2d-23ab-642ec875e0aa
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -938,20 +866,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 116
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":"redacted"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "116"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:13:16 GMT
+ - Tue, 03 Mar 2026 14:34:30 GMT
Expires:
- "0"
Pragma:
@@ -967,13 +895,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 3bf0eb24-0113-46b9-5b1b-0b67ea83b884
+ - 29104b2f-3d24-440d-47e2-6b960584d813
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 731.553292ms
- - id: 14
+ duration: 312.560792ms
+ - id: 13
request:
proto: HTTP/1.1
proto_major: 1
@@ -991,9 +919,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - aefbb289-0b14-ffbb-692e-5fb3d20d08c6
+ - cb405a84-3c4c-57bd-8f47-c682b7640374
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1012,7 +940,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"commercialModel":"Subscription","consumptionBased":false,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101006540","useFor":"Testing","origin":"OPERATOR","guid":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"terraform-integration-canary","description":"Global Account for Integration tests for the Terraform provider for SAP BTP on Canary Landscape\nSee https://github.com/SAP/terraform-provider-btp ","createdDate":"May 11, 2023, 8:59:23 AM","modifiedDate":"Sep 29, 2025, 8:41:51 AM","children":[{"guid":"14870944-4832-4e76-83f7-d2913661cf6d","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-se-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 23, 2025, 5:52:18 AM","createdBy":"john.doe@int.test","modifiedDate":"Jan 23, 2025, 6:03:51 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"14870944-4832-4e76-83f7-d2913661cf6d","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","ENTITLEMENTS","DEFAULT"],"customProperties":[{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":"Label text 1"},{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"},{"guid":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-roles","description":"PLEASE DO NOT DELETE!! This dir is used for integration test","createdDate":"Jul 18, 2024, 6:49:00 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jul 18, 2024, 7:49:40 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","ENTITLEMENTS","DEFAULT"],"contractStatus":"ACTIVE"},{"guid":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 27, 2025, 6:50:51 AM","createdBy":"john.doe@int.test","modifiedDate":"Jan 29, 2025, 6:17:41 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","ENTITLEMENTS","DEFAULT"],"contractStatus":"ACTIVE"},{"guid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements","createdDate":"Oct 6, 2023, 9:57:23 AM","createdBy":"john.doe+2@int.test","modifiedDate":"Oct 6, 2023, 10:00:32 AM","children":[{"guid":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentGuid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGUID":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentType":"GROUP","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements-stacked","createdDate":"Oct 6, 2023, 9:58:25 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Oct 6, 2023, 9:58:25 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+4@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Updated features assigned to directory.","directoryType":"GROUP","directoryFeatures":["ENTITLEMENTS","DEFAULT"],"contractStatus":"ACTIVE"},{"guid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization","createdDate":"May 30, 2025, 2:23:53 PM","createdBy":"john.doe+5@int.test","modifiedDate":"May 30, 2025, 2:24:04 PM","children":[{"guid":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentGuid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization-stacked","createdDate":"May 30, 2025, 2:24:48 PM","createdBy":"john.doe+6@int.test","modifiedDate":"May 30, 2025, 2:24:48 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Directory created.","subdomain":"a9546df7-214e-4414-9191-3d6adfc9cb53","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","ENTITLEMENTS","DEFAULT"],"subaccounts":[{"guid":"3ab098c6-3005-4660-85e6-5c4867f6a05b","technicalName":"3ab098c6-3005-4660-85e6-5c4867f6a05b","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","parentFeatures":["AUTHORIZATIONS","ENTITLEMENTS","DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 10, 2025, 6:12:31 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:13:05 AM"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Global account updated.","subdomain":"terraformintcanary","subaccounts":[{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe+7@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe+8@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+9@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+10@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+11@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+12@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM"},{"guid":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","technicalName":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","displayName":"dcmcanary_20241108084819","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"btp-gp43a2b332-be5b-e3f8-50fb-77c947700e54","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 8, 2024, 8:48:21 AM","createdBy":"DL_65DDA8EBA97EAA0134EEB5DC@global.corp.sap","modifiedDate":"Nov 8, 2024, 8:48:43 AM"}],"contractStatus":"ACTIVE"}'
+ body: '{"commercialModel":"Subscription","consumptionBased":false,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101000297","useFor":"Testing","origin":"OPERATOR","guid":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"terraform-integration-canary","description":"Global Account for Integration tests for the Terraform provider for SAP BTP on Canary Landscape\nSee https://github.com/SAP/terraform-provider-btp ","createdDate":"May 11, 2023, 8:59:23 AM","modifiedDate":"Feb 10, 2026, 4:55:39 AM","children":[{"guid":"14870944-4832-4e76-83f7-d2913661cf6d","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-se-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 23, 2025, 5:52:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jan 23, 2025, 6:03:51 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"14870944-4832-4e76-83f7-d2913661cf6d","directoryType":"PROJECT","directoryFeatures":["ENTITLEMENTS","DEFAULT","AUTHORIZATIONS"],"customProperties":[{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":"Label text 1"},{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"},{"guid":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-roles","description":"PLEASE DO NOT DELETE!! This dir is used for integration test","createdDate":"Jul 18, 2024, 6:49:00 AM","createdBy":"john.doe+2@int.test","modifiedDate":"Jul 18, 2024, 7:49:40 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","directoryType":"PROJECT","directoryFeatures":["ENTITLEMENTS","DEFAULT","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 27, 2025, 6:50:51 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Jan 29, 2025, 6:17:41 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","directoryType":"PROJECT","directoryFeatures":["ENTITLEMENTS","DEFAULT","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements","createdDate":"Oct 6, 2023, 9:57:23 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 17, 2026, 7:48:19 AM","children":[{"guid":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentGuid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGUID":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements-stacked","createdDate":"Oct 6, 2023, 9:58:25 AM","createdBy":"john.doe@int.test","modifiedDate":"Oct 6, 2023, 9:58:25 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+4@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+5@int.test"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","directoryType":"PROJECT","directoryFeatures":["ENTITLEMENTS","DEFAULT","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization","createdDate":"May 30, 2025, 2:23:53 PM","createdBy":"john.doe@int.test","modifiedDate":"May 30, 2025, 2:24:04 PM","children":[{"guid":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentGuid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization-stacked","createdDate":"May 30, 2025, 2:24:48 PM","createdBy":"john.doe@int.test","modifiedDate":"May 30, 2025, 2:24:48 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Directory created.","subdomain":"a9546df7-214e-4414-9191-3d6adfc9cb53","directoryType":"PROJECT","directoryFeatures":["ENTITLEMENTS","DEFAULT","AUTHORIZATIONS"],"subaccounts":[{"guid":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6","technicalName":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","parentFeatures":["ENTITLEMENTS","DEFAULT","AUTHORIZATIONS"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:33:58 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:34:28 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}],"contractStatus":"ACTIVE"},{"guid":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-disaster-revovery","description":"Directory conatining two paired DR subaccounts","createdDate":"Feb 27, 2026, 11:33:23 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:33:23 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"2dc1ecf1-786c-4f92-91f2-26650ab3ad28","technicalName":"2dc1ecf1-786c-4f92-91f2-26650ab3ad28","displayName":"integration-test-dr-to-be-paired-eu12","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-dr-to-be-paired-eu12-8tu9lgxa","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 12:59:03 PM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 12:59:34 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"badbcbf8-eca7-4472-9f66-cb9887ba7c3d","technicalName":"badbcbf8-eca7-4472-9f66-cb9887ba7c3d","displayName":"integration-test-dr-subaccount-eu12","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-dr-subaccount-eu12-99p94dot","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 11:34:34 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:34:59 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"f59b5902-d24c-446c-b245-92c814faa0d9","technicalName":"f59b5902-d24c-446c-b245-92c814faa0d9","displayName":"integration-test-dr-to-be-paired-eu10-canary","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu10-canary","subdomain":"integration-test-dr-to-be-paired-eu10-canacry-hqhkrthv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 12:58:30 PM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 12:59:17 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"608858ef-5829-4aa6-88e7-0e220ef1aaeb","technicalName":"608858ef-5829-4aa6-88e7-0e220ef1aaeb","displayName":"integration-test-dr-subaccount-eu10-canary","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu10-canary","subdomain":"integration-test-dr-subaccount-eu10-canary-ls0upaxs","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 11:34:09 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:34:29 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Global account updated.","subdomain":"terraformintcanary","subaccounts":[{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+6@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+7@int.test"},{"guid":"b7ed3f66-5b6d-4290-856c-099e9e3cbb1b","technicalName":"b7ed3f66-5b6d-4290-856c-099e9e3cbb1b","displayName":"integration-test-ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-ias-408hsvn1","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test bundled applications on the SAP Cloud Identity Services Provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 8:47:42 AM","createdBy":"john.doe+8@int.test","modifiedDate":"Feb 27, 2026, 8:48:09 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+9@int.test"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+10@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+11@int.test"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+12@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+13@int.test"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+14@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+15@int.test"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+16@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+17@int.test"},{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe+18@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+19@int.test"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+20@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+21@int.test"}],"contractStatus":"ACTIVE"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1021,7 +949,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:13:17 GMT
+ - Tue, 03 Mar 2026 14:34:31 GMT
Expires:
- "0"
Pragma:
@@ -1039,85 +967,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 6ad5ca27-6b07-408e-6fab-6afde3d8006c
- X-Xss-Protection:
- - "1"
- status: 200 OK
- code: 200
- duration: 563.695458ms
- - id: 15
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 198
- transfer_encoding: []
- trailer: {}
- host: canary.cli.btp.int.sap
- remote_addr: ""
- request_uri: ""
- body: |
- {"paramValues":{"confirm":"true","directoryID":"a9546df7-214e-4414-9191-3d6adfc9cb53","forceDelete":"true","globalAccount":"terraformintcanary","subaccount":"3ab098c6-3005-4660-85e6-5c4867f6a05b"}}
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
- X-Correlationid:
- - 2ff1faab-c40d-1874-e6b2-ad6e267982e3
- X-Cpcli-Customidp:
- - identityProvider
- X-Cpcli-Format:
- - json
- X-Cpcli-Sessionid:
- - redacted
- X-Cpcli-Subdomain:
- - terraformintcanary
- url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?delete
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: -1
- uncompressed: true
- body: '{"error":"Subaccount is marked as used for production and cannot be deleted with forceDelete=true [Error: 12003/400]"}'
- headers:
- Cache-Control:
- - no-cache, no-store, max-age=0, must-revalidate
- Content-Security-Policy:
- - default-src 'self'
- Content-Type:
- - application/json
- Date:
- - Mon, 10 Nov 2025 06:13:17 GMT
- Expires:
- - "0"
- Pragma:
- - no-cache
- Referrer-Policy:
- - no-referrer
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains; preload;
- X-Content-Type-Options:
- - nosniff
- X-Cpcli-Backend-Mediatype:
- - application/json
- X-Cpcli-Backend-Status:
- - "400"
- X-Frame-Options:
- - DENY
- X-Vcap-Request-Id:
- - a3cf2c90-86c4-4d86-6b66-15e89b534bea
+ - f7503305-317c-423f-7cbe-a914ca9808d4
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 460.525542ms
- - id: 16
+ duration: 240.413416ms
+ - id: 14
request:
proto: HTTP/1.1
proto_major: 1
@@ -1129,15 +985,15 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"confirm":"true","directoryID":"a9546df7-214e-4414-9191-3d6adfc9cb53","forceDelete":"false","globalAccount":"terraformintcanary","subaccount":"3ab098c6-3005-4660-85e6-5c4867f6a05b"}}
+ {"paramValues":{"confirm":"true","directoryID":"a9546df7-214e-4414-9191-3d6adfc9cb53","forceDelete":"false","globalAccount":"terraformintcanary","subaccount":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 44a910c7-f29f-2858-575e-036fc9928768
+ - 04ac8de8-a48d-7624-bcab-166426eb32a1
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1156,7 +1012,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"3ab098c6-3005-4660-85e6-5c4867f6a05b","technicalName":"3ab098c6-3005-4660-85e6-5c4867f6a05b","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","parentFeatures":["AUTHORIZATIONS","ENTITLEMENTS","DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Delete subaccount entity","createdDate":"Nov 10, 2025, 6:12:31 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:13:05 AM","jobId":"22409722"}'
+ body: '{"guid":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6","technicalName":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","parentFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Delete subaccount entity","createdDate":"Mar 3, 2026, 2:33:58 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:34:28 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test","jobId":"24061256"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1165,7 +1021,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:13:18 GMT
+ - Tue, 03 Mar 2026 14:34:31 GMT
Expires:
- "0"
Pragma:
@@ -1183,85 +1039,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 34575649-5496-42c0-4420-d57550ba1397
+ - 27b3ac57-37d1-46d9-6355-4b9a7f13efe2
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 770.808084ms
- - id: 17
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 107
- transfer_encoding: []
- trailer: {}
- host: canary.cli.btp.int.sap
- remote_addr: ""
- request_uri: ""
- body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"3ab098c6-3005-4660-85e6-5c4867f6a05b"}}
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
- X-Correlationid:
- - 1b765bad-9e1e-73ba-eba0-1f93feee13d4
- X-Cpcli-Customidp:
- - identityProvider
- X-Cpcli-Format:
- - json
- X-Cpcli-Sessionid:
- - redacted
- X-Cpcli-Subdomain:
- - terraformintcanary
- url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?get
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: -1
- uncompressed: true
- body: '{"guid":"3ab098c6-3005-4660-85e6-5c4867f6a05b","technicalName":"3ab098c6-3005-4660-85e6-5c4867f6a05b","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Nov 10, 2025, 6:12:31 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:13:19 AM"}'
- headers:
- Cache-Control:
- - no-cache, no-store, max-age=0, must-revalidate
- Content-Security-Policy:
- - default-src 'self'
- Content-Type:
- - application/json
- Date:
- - Mon, 10 Nov 2025 06:13:23 GMT
- Expires:
- - "0"
- Pragma:
- - no-cache
- Referrer-Policy:
- - no-referrer
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains; preload;
- X-Content-Type-Options:
- - nosniff
- X-Cpcli-Backend-Mediatype:
- - application/json;charset=UTF-8
- X-Cpcli-Backend-Status:
- - "200"
- X-Frame-Options:
- - DENY
- X-Vcap-Request-Id:
- - 22c1ab2f-d006-4a4e-5597-9c2c63e0091e
- X-Xss-Protection:
- - "1"
- status: 200 OK
- code: 200
- duration: 419.392583ms
- - id: 18
+ duration: 507.366083ms
+ - id: 15
request:
proto: HTTP/1.1
proto_major: 1
@@ -1273,15 +1057,15 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"3ab098c6-3005-4660-85e6-5c4867f6a05b"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - a6ade95b-344f-8969-1f88-e7f48e04e99b
+ - 6d480e6f-1bc3-aff0-78ac-218949a5ecce
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1300,7 +1084,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"3ab098c6-3005-4660-85e6-5c4867f6a05b","technicalName":"3ab098c6-3005-4660-85e6-5c4867f6a05b","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Nov 10, 2025, 6:12:31 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:13:19 AM"}'
+ body: '{"guid":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6","technicalName":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:33:58 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:34:32 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1309,7 +1093,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:13:29 GMT
+ - Tue, 03 Mar 2026 14:34:36 GMT
Expires:
- "0"
Pragma:
@@ -1327,13 +1111,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 53f666c3-8196-491b-791f-99e37a5ba256
+ - c99ebd36-60e6-4202-7d3e-15822eab5962
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 430.832292ms
- - id: 19
+ duration: 75.805292ms
+ - id: 16
request:
proto: HTTP/1.1
proto_major: 1
@@ -1345,15 +1129,15 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"3ab098c6-3005-4660-85e6-5c4867f6a05b"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 827f75b9-ef9f-29bf-725f-0f9369c519f2
+ - 5c3ee1d9-b48b-089e-98cb-7649e7247971
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1372,7 +1156,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"3ab098c6-3005-4660-85e6-5c4867f6a05b","technicalName":"3ab098c6-3005-4660-85e6-5c4867f6a05b","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["AUTHORIZATIONS","ENTITLEMENTS","DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Nov 10, 2025, 6:12:31 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:13:19 AM"}'
+ body: '{"guid":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6","technicalName":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:33:58 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:34:32 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1381,7 +1165,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:13:39 GMT
+ - Tue, 03 Mar 2026 14:34:41 GMT
Expires:
- "0"
Pragma:
@@ -1399,13 +1183,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 772176b7-12e3-4bbe-5925-0d978721bd0d
+ - 621a06a0-b748-4d70-4d44-f5609cd2cbdc
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 415.839042ms
- - id: 20
+ duration: 82.784417ms
+ - id: 17
request:
proto: HTTP/1.1
proto_major: 1
@@ -1417,15 +1201,15 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"3ab098c6-3005-4660-85e6-5c4867f6a05b"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 4610975e-ff89-c0bc-baa3-ee68e0294fec
+ - 0291aa6b-47be-ccf3-83f6-6a6141259b36
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1444,7 +1228,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"3ab098c6-3005-4660-85e6-5c4867f6a05b","technicalName":"3ab098c6-3005-4660-85e6-5c4867f6a05b","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["AUTHORIZATIONS","ENTITLEMENTS","DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Nov 10, 2025, 6:12:31 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:13:19 AM"}'
+ body: '{"guid":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6","technicalName":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:33:58 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:34:32 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1453,7 +1237,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:13:50 GMT
+ - Tue, 03 Mar 2026 14:34:51 GMT
Expires:
- "0"
Pragma:
@@ -1471,13 +1255,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - a8238530-245a-4c6b-4a00-4f8de83c2930
+ - 940b597f-5c2d-488c-6d85-1f0159104481
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 435.459167ms
- - id: 21
+ duration: 92.879667ms
+ - id: 18
request:
proto: HTTP/1.1
proto_major: 1
@@ -1489,15 +1273,15 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"3ab098c6-3005-4660-85e6-5c4867f6a05b"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 9d4e6d79-52c8-4a99-d9f8-373d1779b8a8
+ - cfb1ddb6-e839-b7c6-6bfc-d8e80de722ec
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1516,7 +1300,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"error":"Subaccount 3ab098c6-3005-4660-85e6-5c4867f6a05b not found [Error: 20004/404]"}'
+ body: '{"error":"Subaccount 4b22a2ef-05e1-4e5f-844b-a9d30a1c01d6 not found [Error: 20004/404]"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1525,7 +1309,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:14:00 GMT
+ - Tue, 03 Mar 2026 14:35:02 GMT
Expires:
- "0"
Pragma:
@@ -1543,9 +1327,9 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - dae60b6f-6aa2-49a3-5f03-2bd9aa2a5660
+ - d0da670c-5126-474f-5d3d-831244042cb7
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 458.400708ms
+ duration: 117.534792ms
diff --git a/btp/provider/fixtures/resource_subaccount.with_parent_hierarchy.yaml b/btp/provider/fixtures/resource_subaccount.with_parent_hierarchy.yaml
index ee30dda4..9be14ea3 100644
--- a/btp/provider/fixtures/resource_subaccount.with_parent_hierarchy.yaml
+++ b/btp/provider/fixtures/resource_subaccount.with_parent_hierarchy.yaml
@@ -6,7 +6,7 @@ interactions:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -19,9 +19,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 6fa5db79-f376-03e1-4f69-19bfabece2e1
+ - c6556a24-276c-8bf9-2df3-b37f5754cff0
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -32,20 +32,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 116
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":"redacted"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "116"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:10:56 GMT
+ - Tue, 03 Mar 2026 14:32:35 GMT
Expires:
- "0"
Pragma:
@@ -61,18 +61,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 8f66e453-e0b7-4a45-7013-9ef9d4c61978
+ - e2022f65-f567-47a3-6200-7ce6cb56fe62
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 545.695334ms
+ duration: 828.182209ms
- id: 1
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -85,9 +85,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 1b1e981c-6403-10e4-7154-79ab5075ffc1
+ - e1e62952-4764-8189-6e19-e28cf4821ac5
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -98,20 +98,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 116
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":"redacted"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "116"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:10:57 GMT
+ - Tue, 03 Mar 2026 14:32:35 GMT
Expires:
- "0"
Pragma:
@@ -127,12 +127,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 992d194f-2fca-4b1e-799e-1c3307a145d6
+ - eed92e35-217f-4b6f-40e5-e98c3aaea48b
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 510.584834ms
+ duration: 352.451875ms
- id: 2
request:
proto: HTTP/1.1
@@ -151,9 +151,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - ed82b116-f264-6fee-9399-9ffe323486c1
+ - bf062258-c639-56a2-9769-524b979ecb8e
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -172,7 +172,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"commercialModel":"Subscription","consumptionBased":false,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101006540","useFor":"Testing","origin":"OPERATOR","guid":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"terraform-integration-canary","description":"Global Account for Integration tests for the Terraform provider for SAP BTP on Canary Landscape\nSee https://github.com/SAP/terraform-provider-btp ","createdDate":"May 11, 2023, 8:59:23 AM","modifiedDate":"Sep 29, 2025, 8:41:51 AM","children":[{"guid":"14870944-4832-4e76-83f7-d2913661cf6d","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-se-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 23, 2025, 5:52:18 AM","createdBy":"john.doe@int.test","modifiedDate":"Jan 23, 2025, 6:03:51 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"14870944-4832-4e76-83f7-d2913661cf6d","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"customProperties":[{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":"Label text 1"},{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"},{"guid":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-roles","description":"PLEASE DO NOT DELETE!! This dir is used for integration test","createdDate":"Jul 18, 2024, 6:49:00 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jul 18, 2024, 7:49:40 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"},{"guid":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 27, 2025, 6:50:51 AM","createdBy":"john.doe@int.test","modifiedDate":"Jan 29, 2025, 6:17:41 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"},{"guid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements","createdDate":"Oct 6, 2023, 9:57:23 AM","createdBy":"john.doe+2@int.test","modifiedDate":"Oct 6, 2023, 10:00:32 AM","children":[{"guid":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentGuid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGUID":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentType":"GROUP","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements-stacked","createdDate":"Oct 6, 2023, 9:58:25 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Oct 6, 2023, 9:58:25 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+4@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Updated features assigned to directory.","directoryType":"GROUP","directoryFeatures":["DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"},{"guid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization","createdDate":"May 30, 2025, 2:23:53 PM","createdBy":"john.doe+5@int.test","modifiedDate":"May 30, 2025, 2:24:04 PM","children":[{"guid":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentGuid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization-stacked","createdDate":"May 30, 2025, 2:24:48 PM","createdBy":"john.doe+6@int.test","modifiedDate":"May 30, 2025, 2:24:48 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Directory created.","subdomain":"a9546df7-214e-4414-9191-3d6adfc9cb53","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Global account updated.","subdomain":"terraformintcanary","subaccounts":[{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+7@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+8@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+9@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe+10@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe+11@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+12@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM"},{"guid":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","technicalName":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","displayName":"dcmcanary_20241108084819","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"btp-gp43a2b332-be5b-e3f8-50fb-77c947700e54","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 8, 2024, 8:48:21 AM","createdBy":"DL_65DDA8EBA97EAA0134EEB5DC@global.corp.sap","modifiedDate":"Nov 8, 2024, 8:48:43 AM"}],"contractStatus":"ACTIVE"}'
+ body: '{"commercialModel":"Subscription","consumptionBased":false,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101000297","useFor":"Testing","origin":"OPERATOR","guid":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"terraform-integration-canary","description":"Global Account for Integration tests for the Terraform provider for SAP BTP on Canary Landscape\nSee https://github.com/SAP/terraform-provider-btp ","createdDate":"May 11, 2023, 8:59:23 AM","modifiedDate":"Feb 10, 2026, 4:55:39 AM","children":[{"guid":"14870944-4832-4e76-83f7-d2913661cf6d","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-se-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 23, 2025, 5:52:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jan 23, 2025, 6:03:51 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"14870944-4832-4e76-83f7-d2913661cf6d","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"customProperties":[{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":"Label text 1"},{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"},{"guid":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-roles","description":"PLEASE DO NOT DELETE!! This dir is used for integration test","createdDate":"Jul 18, 2024, 6:49:00 AM","createdBy":"john.doe+2@int.test","modifiedDate":"Jul 18, 2024, 7:49:40 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 27, 2025, 6:50:51 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Jan 29, 2025, 6:17:41 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements","createdDate":"Oct 6, 2023, 9:57:23 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 17, 2026, 7:48:19 AM","children":[{"guid":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentGuid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGUID":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements-stacked","createdDate":"Oct 6, 2023, 9:58:25 AM","createdBy":"john.doe@int.test","modifiedDate":"Oct 6, 2023, 9:58:25 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+4@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+5@int.test"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization","createdDate":"May 30, 2025, 2:23:53 PM","createdBy":"john.doe@int.test","modifiedDate":"May 30, 2025, 2:24:04 PM","children":[{"guid":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentGuid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization-stacked","createdDate":"May 30, 2025, 2:24:48 PM","createdBy":"john.doe@int.test","modifiedDate":"May 30, 2025, 2:24:48 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Directory created.","subdomain":"a9546df7-214e-4414-9191-3d6adfc9cb53","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-disaster-revovery","description":"Directory conatining two paired DR subaccounts","createdDate":"Feb 27, 2026, 11:33:23 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:33:23 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"608858ef-5829-4aa6-88e7-0e220ef1aaeb","technicalName":"608858ef-5829-4aa6-88e7-0e220ef1aaeb","displayName":"integration-test-dr-subaccount-eu10-canary","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu10-canary","subdomain":"integration-test-dr-subaccount-eu10-canary-ls0upaxs","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 11:34:09 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:34:29 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"2dc1ecf1-786c-4f92-91f2-26650ab3ad28","technicalName":"2dc1ecf1-786c-4f92-91f2-26650ab3ad28","displayName":"integration-test-dr-to-be-paired-eu12","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-dr-to-be-paired-eu12-8tu9lgxa","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 12:59:03 PM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 12:59:34 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"f59b5902-d24c-446c-b245-92c814faa0d9","technicalName":"f59b5902-d24c-446c-b245-92c814faa0d9","displayName":"integration-test-dr-to-be-paired-eu10-canary","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu10-canary","subdomain":"integration-test-dr-to-be-paired-eu10-canacry-hqhkrthv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 12:58:30 PM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 12:59:17 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"badbcbf8-eca7-4472-9f66-cb9887ba7c3d","technicalName":"badbcbf8-eca7-4472-9f66-cb9887ba7c3d","displayName":"integration-test-dr-subaccount-eu12","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-dr-subaccount-eu12-99p94dot","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 11:34:34 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:34:59 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Global account updated.","subdomain":"terraformintcanary","subaccounts":[{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe+6@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+7@int.test"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+8@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+9@int.test"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+10@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+11@int.test"},{"guid":"b7ed3f66-5b6d-4290-856c-099e9e3cbb1b","technicalName":"b7ed3f66-5b6d-4290-856c-099e9e3cbb1b","displayName":"integration-test-ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-ias-408hsvn1","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test bundled applications on the SAP Cloud Identity Services Provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 8:47:42 AM","createdBy":"john.doe+12@int.test","modifiedDate":"Feb 27, 2026, 8:48:09 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+13@int.test"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+14@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+15@int.test"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+16@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+17@int.test"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+18@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+19@int.test"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+20@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+21@int.test"}],"contractStatus":"ACTIVE"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -181,7 +181,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:10:58 GMT
+ - Tue, 03 Mar 2026 14:32:35 GMT
Expires:
- "0"
Pragma:
@@ -199,12 +199,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 7639e91f-c0b8-4d85-449b-e838f62a1beb
+ - 4f8f548c-1d02-40cb-66fa-02582d79a970
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 629.727417ms
+ duration: 213.59675ms
- id: 3
request:
proto: HTTP/1.1
@@ -223,9 +223,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - f15754a1-2ae0-f709-7acd-6db264053670
+ - 5987b7b9-6804-335d-d260-567641c935af
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -244,7 +244,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"63494296-a111-4b38-a7d3-9df2e1bb9fc2","technicalName":"N\/A","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"STARTED","createdDate":"Nov 10, 2025, 6:10:58 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:10:58 AM","jobId":"22409694"}'
+ body: '{"guid":"b97c7f4c-daf8-4a73-8e02-c5284165b42f","technicalName":"N\/A","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"STARTED","createdDate":"Mar 3, 2026, 2:32:35 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:32:35 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test","jobId":"24061243"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -253,7 +253,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:10:59 GMT
+ - Tue, 03 Mar 2026 14:32:35 GMT
Expires:
- "0"
Pragma:
@@ -271,12 +271,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 7059f8e7-19f6-4fd4-5fbe-3de20300d8f9
+ - 3dae0499-8ca7-473a-7200-d88463e40c54
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 928.731042ms
+ duration: 229.754333ms
- id: 4
request:
proto: HTTP/1.1
@@ -289,15 +289,15 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"63494296-a111-4b38-a7d3-9df2e1bb9fc2"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"b97c7f4c-daf8-4a73-8e02-c5284165b42f"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - fbff9da0-42c5-6274-2cac-8c97ff074917
+ - 7c9c7ec4-7e75-d477-f1c1-d59410149b74
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -316,7 +316,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"63494296-a111-4b38-a7d3-9df2e1bb9fc2","technicalName":"N/A","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Nov 10, 2025, 6:10:58 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:11:00 AM"}'
+ body: '{"guid":"b97c7f4c-daf8-4a73-8e02-c5284165b42f","technicalName":"N/A","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Mar 3, 2026, 2:32:35 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:32:36 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -325,7 +325,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:11:04 GMT
+ - Tue, 03 Mar 2026 14:32:41 GMT
Expires:
- "0"
Pragma:
@@ -343,12 +343,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - f9b5c0f6-a3b7-4716-69ca-91eacb3f9839
+ - 83b60d45-4a07-4499-5d50-87221263b8e2
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 446.714375ms
+ duration: 163.651541ms
- id: 5
request:
proto: HTTP/1.1
@@ -361,15 +361,15 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"63494296-a111-4b38-a7d3-9df2e1bb9fc2"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"b97c7f4c-daf8-4a73-8e02-c5284165b42f"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - c3a10212-559e-4694-7ab4-5f6ab88d0b77
+ - 93a8b7e1-9d1d-9c91-9ae9-6254461f0f81
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -388,7 +388,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"63494296-a111-4b38-a7d3-9df2e1bb9fc2","technicalName":"N/A","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Nov 10, 2025, 6:10:58 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:11:00 AM"}'
+ body: '{"guid":"b97c7f4c-daf8-4a73-8e02-c5284165b42f","technicalName":"N/A","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Mar 3, 2026, 2:32:35 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:32:36 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -397,7 +397,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:11:09 GMT
+ - Tue, 03 Mar 2026 14:32:46 GMT
Expires:
- "0"
Pragma:
@@ -415,12 +415,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 84fb22fb-cf5b-4ea3-69d1-4bef9d5614a4
+ - 808bf5a5-6ab1-45e3-4b7f-8ffcc3b63e71
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 416.117875ms
+ duration: 85.9765ms
- id: 6
request:
proto: HTTP/1.1
@@ -433,15 +433,15 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"63494296-a111-4b38-a7d3-9df2e1bb9fc2"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"b97c7f4c-daf8-4a73-8e02-c5284165b42f"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - f66d3aef-7047-1d56-c72c-24c55a7f0a03
+ - c45de795-30d9-3219-2fac-db0e15957311
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -460,7 +460,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"63494296-a111-4b38-a7d3-9df2e1bb9fc2","technicalName":"63494296-a111-4b38-a7d3-9df2e1bb9fc2","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"CREATING","stateMessage":"Assigning entitlements for subaccount.","createdDate":"Nov 10, 2025, 6:10:58 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:11:17 AM"}'
+ body: '{"guid":"b97c7f4c-daf8-4a73-8e02-c5284165b42f","technicalName":"N/A","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Mar 3, 2026, 2:32:35 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:32:36 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -469,7 +469,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:11:20 GMT
+ - Tue, 03 Mar 2026 14:32:56 GMT
Expires:
- "0"
Pragma:
@@ -487,12 +487,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 4e74652b-1b64-43e9-5153-8e1b3986c20b
+ - 2af20ad0-347e-4ce2-4d32-e3e5501e8463
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 443.615458ms
+ duration: 85.891ms
- id: 7
request:
proto: HTTP/1.1
@@ -505,15 +505,15 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"63494296-a111-4b38-a7d3-9df2e1bb9fc2"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"b97c7f4c-daf8-4a73-8e02-c5284165b42f"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 67536868-b39c-1459-509e-9f5f7e142d30
+ - b01384ee-e16d-deb4-09c3-57c7bf836d7c
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -532,7 +532,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"63494296-a111-4b38-a7d3-9df2e1bb9fc2","technicalName":"63494296-a111-4b38-a7d3-9df2e1bb9fc2","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 10, 2025, 6:10:58 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:11:26 AM"}'
+ body: '{"guid":"b97c7f4c-daf8-4a73-8e02-c5284165b42f","technicalName":"b97c7f4c-daf8-4a73-8e02-c5284165b42f","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"CREATING","stateMessage":"Assigning entitlements for subaccount.","createdDate":"Mar 3, 2026, 2:32:35 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:33:02 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -541,7 +541,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:11:30 GMT
+ - Tue, 03 Mar 2026 14:33:06 GMT
Expires:
- "0"
Pragma:
@@ -559,145 +559,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 4c7865a2-bb4a-43df-6f49-ba14147c7bd1
+ - 2e3fe3b7-c941-400b-5356-5086e7efeab5
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 416.622959ms
+ duration: 100.136626ms
- id: 8
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 116
- transfer_encoding: []
- trailer: {}
- host: canary.cli.btp.int.sap
- remote_addr: ""
- request_uri: ""
- body: |
- {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"}
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
- X-Correlationid:
- - 0dcd9509-11e0-24a0-53fb-184cde6a2419
- X-Cpcli-Format:
- - json
- url: https://canary.cli.btp.int.sap/login/v2.97.0
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 116
- uncompressed: false
- body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":"redacted"}'
- headers:
- Cache-Control:
- - no-cache, no-store, max-age=0, must-revalidate
- Content-Length:
- - "116"
- Content-Security-Policy:
- - default-src 'self'
- Content-Type:
- - application/json
- Date:
- - Mon, 10 Nov 2025 06:11:31 GMT
- Expires:
- - "0"
- Pragma:
- - no-cache
- Referrer-Policy:
- - no-referrer
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains; preload;
- X-Content-Type-Options:
- - nosniff
- X-Cpcli-Sessionid:
- - redacted
- X-Frame-Options:
- - DENY
- X-Vcap-Request-Id:
- - 894af8b6-cb15-462f-709a-1c94d196392e
- X-Xss-Protection:
- - "1"
- status: 200 OK
- code: 200
- duration: 566.8045ms
- - id: 9
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 116
- transfer_encoding: []
- trailer: {}
- host: canary.cli.btp.int.sap
- remote_addr: ""
- request_uri: ""
- body: |
- {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"}
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
- X-Correlationid:
- - bfdd3fc0-9a67-2476-0875-ebb8c9e576d0
- X-Cpcli-Format:
- - json
- url: https://canary.cli.btp.int.sap/login/v2.97.0
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 116
- uncompressed: false
- body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":"redacted"}'
- headers:
- Cache-Control:
- - no-cache, no-store, max-age=0, must-revalidate
- Content-Length:
- - "116"
- Content-Security-Policy:
- - default-src 'self'
- Content-Type:
- - application/json
- Date:
- - Mon, 10 Nov 2025 06:11:32 GMT
- Expires:
- - "0"
- Pragma:
- - no-cache
- Referrer-Policy:
- - no-referrer
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains; preload;
- X-Content-Type-Options:
- - nosniff
- X-Cpcli-Sessionid:
- - redacted
- X-Frame-Options:
- - DENY
- X-Vcap-Request-Id:
- - d9c0c8fe-927f-43d5-63c5-3f5748773e97
- X-Xss-Protection:
- - "1"
- status: 200 OK
- code: 200
- duration: 605.290042ms
- - id: 10
request:
proto: HTTP/1.1
proto_major: 1
@@ -709,15 +577,15 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"63494296-a111-4b38-a7d3-9df2e1bb9fc2"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"b97c7f4c-daf8-4a73-8e02-c5284165b42f"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 11ad69a0-093c-9298-1f45-812b2d9cb80c
+ - 9acfa718-9153-a872-a61c-022537a889c3
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -736,7 +604,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"63494296-a111-4b38-a7d3-9df2e1bb9fc2","technicalName":"63494296-a111-4b38-a7d3-9df2e1bb9fc2","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 10, 2025, 6:10:58 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:11:26 AM"}'
+ body: '{"guid":"b97c7f4c-daf8-4a73-8e02-c5284165b42f","technicalName":"b97c7f4c-daf8-4a73-8e02-c5284165b42f","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:32:35 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:33:13 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -745,7 +613,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:11:32 GMT
+ - Tue, 03 Mar 2026 14:33:16 GMT
Expires:
- "0"
Pragma:
@@ -763,18 +631,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - c69d55df-185a-4213-7c42-e1d7fb8e8f37
+ - 4806b6bb-188d-4f94-4a09-4960f7373fe1
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 631.224459ms
- - id: 11
+ duration: 89.71025ms
+ - id: 9
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -787,9 +655,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - c7025522-28f5-3d2a-2225-371db2bd4a77
+ - 452c36f8-16d5-ab7b-7e53-9505256fbcd2
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -800,20 +668,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 116
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":"redacted"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "116"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:11:33 GMT
+ - Tue, 03 Mar 2026 14:33:16 GMT
Expires:
- "0"
Pragma:
@@ -829,18 +697,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - a2aa451d-3506-4d13-73a8-21cff846f591
+ - 9ebd9f85-e8b4-4c6c-59f3-f4f0d1cc7eec
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 524.394792ms
- - id: 12
+ duration: 261.429833ms
+ - id: 10
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -853,9 +721,9 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - c88be6c7-c4da-df5e-7447-987af398e1d4
+ - bd334e75-ee1a-328f-a24e-2b6ff5337e36
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -866,20 +734,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 116
+ content_length: 84
uncompressed: false
- body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":"redacted"}'
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "116"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:11:34 GMT
+ - Tue, 03 Mar 2026 14:33:17 GMT
Expires:
- "0"
Pragma:
@@ -895,33 +763,33 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - a910818f-5dd7-4f51-75a9-d6faa16e36fc
+ - e8c5b7f3-9fe2-4e06-65d1-dac4db7e1fe6
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 576.713833ms
- - id: 13
+ duration: 357.199875ms
+ - id: 11
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 78
+ content_length: 107
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","showHierarchy":"true"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"b97c7f4c-daf8-4a73-8e02-c5284165b42f"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - e3647b74-5356-e9db-30f2-3d2923f14742
+ - 1f8d40a1-bf24-2ca9-fcd6-5a8841144d7d
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -930,7 +798,7 @@ interactions:
- redacted
X-Cpcli-Subdomain:
- terraformintcanary
- url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/global-account?get
+ url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?get
method: POST
response:
proto: HTTP/2.0
@@ -940,7 +808,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"commercialModel":"Subscription","consumptionBased":false,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101006540","useFor":"Testing","origin":"OPERATOR","guid":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"terraform-integration-canary","description":"Global Account for Integration tests for the Terraform provider for SAP BTP on Canary Landscape\nSee https://github.com/SAP/terraform-provider-btp ","createdDate":"May 11, 2023, 8:59:23 AM","modifiedDate":"Sep 29, 2025, 8:41:51 AM","children":[{"guid":"14870944-4832-4e76-83f7-d2913661cf6d","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-se-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 23, 2025, 5:52:18 AM","createdBy":"john.doe@int.test","modifiedDate":"Jan 23, 2025, 6:03:51 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"14870944-4832-4e76-83f7-d2913661cf6d","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","ENTITLEMENTS","DEFAULT"],"customProperties":[{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":"Label text 1"},{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"},{"guid":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-roles","description":"PLEASE DO NOT DELETE!! This dir is used for integration test","createdDate":"Jul 18, 2024, 6:49:00 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jul 18, 2024, 7:49:40 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","ENTITLEMENTS","DEFAULT"],"contractStatus":"ACTIVE"},{"guid":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 27, 2025, 6:50:51 AM","createdBy":"john.doe@int.test","modifiedDate":"Jan 29, 2025, 6:17:41 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","ENTITLEMENTS","DEFAULT"],"contractStatus":"ACTIVE"},{"guid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements","createdDate":"Oct 6, 2023, 9:57:23 AM","createdBy":"john.doe+2@int.test","modifiedDate":"Oct 6, 2023, 10:00:32 AM","children":[{"guid":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentGuid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGUID":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentType":"GROUP","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements-stacked","createdDate":"Oct 6, 2023, 9:58:25 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Oct 6, 2023, 9:58:25 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+4@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Updated features assigned to directory.","directoryType":"GROUP","directoryFeatures":["ENTITLEMENTS","DEFAULT"],"contractStatus":"ACTIVE"},{"guid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization","createdDate":"May 30, 2025, 2:23:53 PM","createdBy":"john.doe+5@int.test","modifiedDate":"May 30, 2025, 2:24:04 PM","children":[{"guid":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentGuid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization-stacked","createdDate":"May 30, 2025, 2:24:48 PM","createdBy":"john.doe+6@int.test","modifiedDate":"May 30, 2025, 2:24:48 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"63494296-a111-4b38-a7d3-9df2e1bb9fc2","technicalName":"63494296-a111-4b38-a7d3-9df2e1bb9fc2","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 10, 2025, 6:10:58 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:11:26 AM"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Directory created.","subdomain":"a9546df7-214e-4414-9191-3d6adfc9cb53","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","ENTITLEMENTS","DEFAULT"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Global account updated.","subdomain":"terraformintcanary","subaccounts":[{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe+7@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+8@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe+9@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+10@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+11@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM"},{"guid":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","technicalName":"49e59eaa-65e4-4ffb-8186-74979e1f47c4","displayName":"dcmcanary_20241108084819","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"btp-gp43a2b332-be5b-e3f8-50fb-77c947700e54","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 8, 2024, 8:48:21 AM","createdBy":"DL_65DDA8EBA97EAA0134EEB5DC@global.corp.sap","modifiedDate":"Nov 8, 2024, 8:48:43 AM"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+12@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM"}],"contractStatus":"ACTIVE"}'
+ body: '{"guid":"b97c7f4c-daf8-4a73-8e02-c5284165b42f","technicalName":"b97c7f4c-daf8-4a73-8e02-c5284165b42f","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:32:35 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:33:13 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -949,7 +817,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:11:34 GMT
+ - Tue, 03 Mar 2026 14:33:17 GMT
Expires:
- "0"
Pragma:
@@ -967,42 +835,36 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 43ed231d-ddc5-4977-62cf-83ce0b686e95
+ - 05244984-06f9-47b5-4e61-8eaeec902018
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 664.149083ms
- - id: 14
+ duration: 252.290458ms
+ - id: 12
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 198
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"confirm":"true","directoryID":"a9546df7-214e-4414-9191-3d6adfc9cb53","forceDelete":"true","globalAccount":"terraformintcanary","subaccount":"63494296-a111-4b38-a7d3-9df2e1bb9fc2"}}
+ {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 3febf5ee-ff17-23bf-f024-dd1ea1073abc
- X-Cpcli-Customidp:
- - identityProvider
+ - 3e62e4b6-91f5-6aac-edb6-7306a072565d
X-Cpcli-Format:
- json
- X-Cpcli-Sessionid:
- - redacted
- X-Cpcli-Subdomain:
- - terraformintcanary
- url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?delete
+ url: https://canary.cli.btp.int.sap/login/v2.97.0
method: POST
response:
proto: HTTP/2.0
@@ -1010,18 +872,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: -1
- uncompressed: true
- body: '{"error":"Subaccount is marked as used for production and cannot be deleted with forceDelete=true [Error: 12003/400]"}'
+ content_length: 84
+ uncompressed: false
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
+ Content-Length:
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:11:35 GMT
+ - Tue, 03 Mar 2026 14:33:18 GMT
Expires:
- "0"
Pragma:
@@ -1032,49 +896,41 @@ interactions:
- max-age=31536000; includeSubDomains; preload;
X-Content-Type-Options:
- nosniff
- X-Cpcli-Backend-Mediatype:
- - application/json
- X-Cpcli-Backend-Status:
- - "400"
+ X-Cpcli-Sessionid:
+ - redacted
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - e8901864-5868-474c-5ffc-6b0f7a0bf173
+ - 1f102bb0-1cf9-4a64-5f15-48e7d4005c9a
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 457.768375ms
- - id: 15
+ duration: 580.247625ms
+ - id: 13
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 199
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"confirm":"true","directoryID":"a9546df7-214e-4414-9191-3d6adfc9cb53","forceDelete":"false","globalAccount":"terraformintcanary","subaccount":"63494296-a111-4b38-a7d3-9df2e1bb9fc2"}}
+ {"customIdp":"identityProvider","subdomain":"terraformintcanary","userName":"john.doe@int.test","password":"testUserPassword"}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - a3745b3f-2662-1bf7-e712-4b0fae953920
- X-Cpcli-Customidp:
- - identityProvider
+ - f8009bf9-1a1a-1d9d-f6e9-0cb559e4cd37
X-Cpcli-Format:
- json
- X-Cpcli-Sessionid:
- - redacted
- X-Cpcli-Subdomain:
- - terraformintcanary
- url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?delete
+ url: https://canary.cli.btp.int.sap/login/v2.97.0
method: POST
response:
proto: HTTP/2.0
@@ -1082,18 +938,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: -1
- uncompressed: true
- body: '{"guid":"63494296-a111-4b38-a7d3-9df2e1bb9fc2","technicalName":"63494296-a111-4b38-a7d3-9df2e1bb9fc2","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Delete subaccount entity","createdDate":"Nov 10, 2025, 6:10:58 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:11:26 AM","jobId":"22409700"}'
+ content_length: 84
+ uncompressed: false
+ body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
+ Content-Length:
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:11:35 GMT
+ - Tue, 03 Mar 2026 14:33:18 GMT
Expires:
- "0"
Pragma:
@@ -1104,40 +962,38 @@ interactions:
- max-age=31536000; includeSubDomains; preload;
X-Content-Type-Options:
- nosniff
- X-Cpcli-Backend-Mediatype:
- - application/json;charset=UTF-8
- X-Cpcli-Backend-Status:
- - "200"
+ X-Cpcli-Sessionid:
+ - redacted
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 70b8878f-65ae-45f7-5ea9-1a7d5bd52520
+ - 4dd93240-5a2e-4e71-40d3-78d6ad07c47f
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 834.193875ms
- - id: 16
+ duration: 365.351333ms
+ - id: 14
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 107
+ content_length: 78
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"63494296-a111-4b38-a7d3-9df2e1bb9fc2"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","showHierarchy":"true"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 125e8ca1-2a56-a500-689c-3e78e07352c7
+ - 71a632d4-2dbe-1cf9-128f-9b0023682a2d
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1146,7 +1002,7 @@ interactions:
- redacted
X-Cpcli-Subdomain:
- terraformintcanary
- url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?get
+ url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/global-account?get
method: POST
response:
proto: HTTP/2.0
@@ -1156,7 +1012,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"63494296-a111-4b38-a7d3-9df2e1bb9fc2","technicalName":"63494296-a111-4b38-a7d3-9df2e1bb9fc2","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Nov 10, 2025, 6:10:58 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:11:36 AM"}'
+ body: '{"commercialModel":"Subscription","consumptionBased":false,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101000297","useFor":"Testing","origin":"OPERATOR","guid":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"terraform-integration-canary","description":"Global Account for Integration tests for the Terraform provider for SAP BTP on Canary Landscape\nSee https://github.com/SAP/terraform-provider-btp ","createdDate":"May 11, 2023, 8:59:23 AM","modifiedDate":"Feb 10, 2026, 4:55:39 AM","children":[{"guid":"14870944-4832-4e76-83f7-d2913661cf6d","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-se-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 23, 2025, 5:52:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jan 23, 2025, 6:03:51 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"14870944-4832-4e76-83f7-d2913661cf6d","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"customProperties":[{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":"Label text 1"},{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"},{"guid":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-roles","description":"PLEASE DO NOT DELETE!! This dir is used for integration test","createdDate":"Jul 18, 2024, 6:49:00 AM","createdBy":"john.doe+2@int.test","modifiedDate":"Jul 18, 2024, 7:49:40 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 27, 2025, 6:50:51 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Jan 29, 2025, 6:17:41 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements","createdDate":"Oct 6, 2023, 9:57:23 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 17, 2026, 7:48:19 AM","children":[{"guid":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentGuid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGUID":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements-stacked","createdDate":"Oct 6, 2023, 9:58:25 AM","createdBy":"john.doe@int.test","modifiedDate":"Oct 6, 2023, 9:58:25 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+4@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+5@int.test"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization","createdDate":"May 30, 2025, 2:23:53 PM","createdBy":"john.doe@int.test","modifiedDate":"May 30, 2025, 2:24:04 PM","children":[{"guid":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentGuid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization-stacked","createdDate":"May 30, 2025, 2:24:48 PM","createdBy":"john.doe@int.test","modifiedDate":"May 30, 2025, 2:24:48 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"b97c7f4c-daf8-4a73-8e02-c5284165b42f","technicalName":"b97c7f4c-daf8-4a73-8e02-c5284165b42f","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:32:35 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:33:13 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Directory created.","subdomain":"a9546df7-214e-4414-9191-3d6adfc9cb53","directoryType":"PROJECT","directoryFeatures":["DEFAULT","ENTITLEMENTS","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-disaster-revovery","description":"Directory conatining two paired DR subaccounts","createdDate":"Feb 27, 2026, 11:33:23 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:33:23 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"608858ef-5829-4aa6-88e7-0e220ef1aaeb","technicalName":"608858ef-5829-4aa6-88e7-0e220ef1aaeb","displayName":"integration-test-dr-subaccount-eu10-canary","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu10-canary","subdomain":"integration-test-dr-subaccount-eu10-canary-ls0upaxs","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 11:34:09 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:34:29 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"2dc1ecf1-786c-4f92-91f2-26650ab3ad28","technicalName":"2dc1ecf1-786c-4f92-91f2-26650ab3ad28","displayName":"integration-test-dr-to-be-paired-eu12","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-dr-to-be-paired-eu12-8tu9lgxa","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 12:59:03 PM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 12:59:34 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"f59b5902-d24c-446c-b245-92c814faa0d9","technicalName":"f59b5902-d24c-446c-b245-92c814faa0d9","displayName":"integration-test-dr-to-be-paired-eu10-canary","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu10-canary","subdomain":"integration-test-dr-to-be-paired-eu10-canacry-hqhkrthv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 12:58:30 PM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 12:59:17 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"badbcbf8-eca7-4472-9f66-cb9887ba7c3d","technicalName":"badbcbf8-eca7-4472-9f66-cb9887ba7c3d","displayName":"integration-test-dr-subaccount-eu12","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-dr-subaccount-eu12-99p94dot","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 11:34:34 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:34:59 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Global account updated.","subdomain":"terraformintcanary","subaccounts":[{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe+6@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+7@int.test"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+8@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+9@int.test"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+10@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+11@int.test"},{"guid":"b7ed3f66-5b6d-4290-856c-099e9e3cbb1b","technicalName":"b7ed3f66-5b6d-4290-856c-099e9e3cbb1b","displayName":"integration-test-ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-ias-408hsvn1","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test bundled applications on the SAP Cloud Identity Services Provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 8:47:42 AM","createdBy":"john.doe+12@int.test","modifiedDate":"Feb 27, 2026, 8:48:09 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+13@int.test"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+14@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+15@int.test"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+16@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+17@int.test"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+18@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+19@int.test"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+20@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+21@int.test"}],"contractStatus":"ACTIVE"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1165,7 +1021,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:11:41 GMT
+ - Tue, 03 Mar 2026 14:33:18 GMT
Expires:
- "0"
Pragma:
@@ -1183,33 +1039,33 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - cf365024-312d-4123-62e7-774da0d335a6
+ - f5ecc893-3fae-4ed6-527f-1e086f1c2396
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 420.445917ms
- - id: 17
+ duration: 377.537416ms
+ - id: 15
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 107
+ content_length: 199
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"63494296-a111-4b38-a7d3-9df2e1bb9fc2"}}
+ {"paramValues":{"confirm":"true","directoryID":"a9546df7-214e-4414-9191-3d6adfc9cb53","forceDelete":"false","globalAccount":"terraformintcanary","subaccount":"b97c7f4c-daf8-4a73-8e02-c5284165b42f"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 1ee00c52-14a6-8ea6-1b2a-ef0f63d88268
+ - 4cb50288-789f-b666-be20-5d46bf5f9297
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1218,7 +1074,7 @@ interactions:
- redacted
X-Cpcli-Subdomain:
- terraformintcanary
- url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?get
+ url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?delete
method: POST
response:
proto: HTTP/2.0
@@ -1228,7 +1084,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"63494296-a111-4b38-a7d3-9df2e1bb9fc2","technicalName":"63494296-a111-4b38-a7d3-9df2e1bb9fc2","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Nov 10, 2025, 6:10:58 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:11:36 AM"}'
+ body: '{"guid":"b97c7f4c-daf8-4a73-8e02-c5284165b42f","technicalName":"b97c7f4c-daf8-4a73-8e02-c5284165b42f","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Delete subaccount entity","createdDate":"Mar 3, 2026, 2:32:35 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:33:13 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test","jobId":"24061246"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1237,7 +1093,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:11:46 GMT
+ - Tue, 03 Mar 2026 14:33:19 GMT
Expires:
- "0"
Pragma:
@@ -1255,13 +1111,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 0228f5e5-112a-4eb2-5dc9-cb56f6d4ec30
+ - fd543536-6104-466f-459b-0daa3c892057
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 424.083292ms
- - id: 18
+ duration: 475.712833ms
+ - id: 16
request:
proto: HTTP/1.1
proto_major: 1
@@ -1273,15 +1129,15 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"63494296-a111-4b38-a7d3-9df2e1bb9fc2"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"b97c7f4c-daf8-4a73-8e02-c5284165b42f"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - b97c06c1-8516-2bc5-f9ed-22960fd4d608
+ - 94dea039-20bc-bc2b-14cb-f042fe8987ae
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1300,7 +1156,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"63494296-a111-4b38-a7d3-9df2e1bb9fc2","technicalName":"63494296-a111-4b38-a7d3-9df2e1bb9fc2","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Nov 10, 2025, 6:10:58 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:11:36 AM"}'
+ body: '{"guid":"b97c7f4c-daf8-4a73-8e02-c5284165b42f","technicalName":"b97c7f4c-daf8-4a73-8e02-c5284165b42f","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:32:35 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:33:20 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1309,7 +1165,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:11:57 GMT
+ - Tue, 03 Mar 2026 14:33:24 GMT
Expires:
- "0"
Pragma:
@@ -1327,13 +1183,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 322810b8-7bcd-4598-4320-44d6ccf7fe7d
+ - ddd786d8-3914-450b-45a2-6fdbcb4bf3ca
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 463.14175ms
- - id: 19
+ duration: 98.480209ms
+ - id: 17
request:
proto: HTTP/1.1
proto_major: 1
@@ -1345,15 +1201,15 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"63494296-a111-4b38-a7d3-9df2e1bb9fc2"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"b97c7f4c-daf8-4a73-8e02-c5284165b42f"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - d0cddf00-c0d4-82dc-ff00-881c964860e4
+ - d7f28df5-c5b9-021b-e4db-eeddf3e515d2
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1372,7 +1228,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"63494296-a111-4b38-a7d3-9df2e1bb9fc2","technicalName":"63494296-a111-4b38-a7d3-9df2e1bb9fc2","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Nov 10, 2025, 6:10:58 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:11:36 AM"}'
+ body: '{"guid":"b97c7f4c-daf8-4a73-8e02-c5284165b42f","technicalName":"b97c7f4c-daf8-4a73-8e02-c5284165b42f","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:32:35 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:33:20 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1381,7 +1237,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:12:07 GMT
+ - Tue, 03 Mar 2026 14:33:29 GMT
Expires:
- "0"
Pragma:
@@ -1399,13 +1255,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 9aea78a8-416b-4c01-60e5-235235541dd6
+ - 4b411cf3-e86d-4ec9-73ec-3d6175f8cf22
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 440.064667ms
- - id: 20
+ duration: 123.6085ms
+ - id: 18
request:
proto: HTTP/1.1
proto_major: 1
@@ -1417,15 +1273,15 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"63494296-a111-4b38-a7d3-9df2e1bb9fc2"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"b97c7f4c-daf8-4a73-8e02-c5284165b42f"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - ccf707f6-0d86-261f-5950-04a0436a4b34
+ - 6fc81046-4a87-5151-1960-3615676cb287
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1444,7 +1300,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"63494296-a111-4b38-a7d3-9df2e1bb9fc2","technicalName":"63494296-a111-4b38-a7d3-9df2e1bb9fc2","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Nov 10, 2025, 6:10:58 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 10, 2025, 6:11:36 AM"}'
+ body: '{"guid":"b97c7f4c-daf8-4a73-8e02-c5284165b42f","technicalName":"b97c7f4c-daf8-4a73-8e02-c5284165b42f","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentType":"FOLDER","closestEntitlementManagedParentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"USED_FOR_PRODUCTION","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:32:35 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:33:20 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1453,7 +1309,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:12:18 GMT
+ - Tue, 03 Mar 2026 14:33:39 GMT
Expires:
- "0"
Pragma:
@@ -1471,13 +1327,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - c59a725d-3e06-4880-4f88-d6abde0347b7
+ - 18a28a00-559c-4746-602c-5b10b3a57546
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 435.353708ms
- - id: 21
+ duration: 111.111375ms
+ - id: 19
request:
proto: HTTP/1.1
proto_major: 1
@@ -1489,15 +1345,15 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"63494296-a111-4b38-a7d3-9df2e1bb9fc2"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"b97c7f4c-daf8-4a73-8e02-c5284165b42f"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Terraform/1.13.1 terraform-provider-btp/dev
+ - Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 123b716d-1b07-2636-0fad-ce2be4cc5e19
+ - f70e2db5-9bc3-8363-650e-d06b1a48c483
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1516,7 +1372,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"error":"Subaccount 63494296-a111-4b38-a7d3-9df2e1bb9fc2 not found [Error: 20004/404]"}'
+ body: '{"error":"Subaccount b97c7f4c-daf8-4a73-8e02-c5284165b42f not found [Error: 20004/404]"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1525,7 +1381,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Mon, 10 Nov 2025 06:12:28 GMT
+ - Tue, 03 Mar 2026 14:33:49 GMT
Expires:
- "0"
Pragma:
@@ -1543,9 +1399,9 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - bcf81919-19f5-4413-4d09-068f472e4c4b
+ - fb52ac81-9ffc-4ce2-5627-a30b0d3b8801
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 456.562208ms
+ duration: 112.584ms
diff --git a/btp/provider/fixtures/resource_subaccount.yaml b/btp/provider/fixtures/resource_subaccount.yaml
index 5023a5d5..599385e4 100644
--- a/btp/provider/fixtures/resource_subaccount.yaml
+++ b/btp/provider/fixtures/resource_subaccount.yaml
@@ -6,7 +6,7 @@ interactions:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -21,7 +21,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - f28bb2d6-2593-c9f6-bc6c-f983a6293d31
+ - a761a01b-dac6-9025-ee7c-a65381c7d0ab
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -32,20 +32,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:00:56 GMT
+ - Tue, 03 Mar 2026 14:14:54 GMT
Expires:
- "0"
Pragma:
@@ -61,18 +61,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 9af0493b-0c0f-4bac-5828-43df03d2e8b5
+ - 5c7f6e53-1dee-4a12-7ba0-8cfa94884d08
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 3.952771293s
+ duration: 914.703749ms
- id: 1
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -87,7 +87,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - c3803497-ae47-ff95-c908-bcb1e0ece305
+ - abcdbe99-f9b9-89ac-19f1-b351a86cb665
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -98,20 +98,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:00:57 GMT
+ - Tue, 03 Mar 2026 14:14:55 GMT
Expires:
- "0"
Pragma:
@@ -127,12 +127,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - b2330f53-4600-4abb-5445-98fe9a77f9e0
+ - ec259d16-b172-489f-79f0-df5badb47f2c
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 474.045167ms
+ duration: 483.110625ms
- id: 2
request:
proto: HTTP/1.1
@@ -153,7 +153,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 241b029b-25c7-c568-134a-4b8cac4ef257
+ - 8c4d2e2e-2d56-6893-a3a2-9a61f3faaa81
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -172,7 +172,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"a6d907a8-10d3-4742-8211-b26324e65bb7","technicalName":"N\/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"STARTED","createdDate":"Feb 18, 2026, 6:00:57 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:00:57 AM","contractStatus":"ACTIVE","jobId":"23893499"}'
+ body: '{"guid":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","technicalName":"N\/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"STARTED","createdDate":"Mar 3, 2026, 2:14:55 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:14:55 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test","jobId":"24061089"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -181,7 +181,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:00:57 GMT
+ - Tue, 03 Mar 2026 14:14:55 GMT
Expires:
- "0"
Pragma:
@@ -199,12 +199,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 916d8fc3-96b5-4eaa-6d93-ae5ebc66aa80
+ - 339a2b21-6f55-4a78-50bb-07c438821b93
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 776.818458ms
+ duration: 564.348376ms
- id: 3
request:
proto: HTTP/1.1
@@ -217,7 +217,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a6d907a8-10d3-4742-8211-b26324e65bb7"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a"}}
form: {}
headers:
Content-Type:
@@ -225,7 +225,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 08bb89c4-c568-49eb-5049-1c7f98d4666c
+ - a9030a23-9843-ae62-8177-c10d03e1196d
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -244,7 +244,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"a6d907a8-10d3-4742-8211-b26324e65bb7","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Feb 18, 2026, 6:00:57 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:00:58 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Mar 3, 2026, 2:14:55 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:14:56 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -253,7 +253,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:01:03 GMT
+ - Tue, 03 Mar 2026 14:15:01 GMT
Expires:
- "0"
Pragma:
@@ -271,12 +271,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 200c593c-9992-449c-7c75-806fc594ce99
+ - 52bdc3c1-81cb-4e7f-555a-e9b0b6af40ff
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 314.725501ms
+ duration: 177.060834ms
- id: 4
request:
proto: HTTP/1.1
@@ -289,7 +289,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a6d907a8-10d3-4742-8211-b26324e65bb7"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a"}}
form: {}
headers:
Content-Type:
@@ -297,7 +297,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 5dfdc50c-cb07-91a4-d61e-11f1d96e17f0
+ - 660643a2-0304-d0cd-47f0-d8e2a53f8e3e
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -316,7 +316,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"a6d907a8-10d3-4742-8211-b26324e65bb7","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Feb 18, 2026, 6:00:57 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:00:58 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Mar 3, 2026, 2:14:55 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:14:56 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -325,7 +325,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:01:08 GMT
+ - Tue, 03 Mar 2026 14:15:06 GMT
Expires:
- "0"
Pragma:
@@ -343,12 +343,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 2fc53410-fb18-4966-433f-94e7a461dffe
+ - 380a3c8c-f5dd-4df6-77ef-d0fe67c951f1
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 346.602583ms
+ duration: 73.124542ms
- id: 5
request:
proto: HTTP/1.1
@@ -361,7 +361,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a6d907a8-10d3-4742-8211-b26324e65bb7"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a"}}
form: {}
headers:
Content-Type:
@@ -369,7 +369,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 26511fde-fa22-79d6-9aa9-0485f93c0d8b
+ - fa54b5c8-23e0-4eef-2a88-76cb1728a35d
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -388,7 +388,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"a6d907a8-10d3-4742-8211-b26324e65bb7","technicalName":"a6d907a8-10d3-4742-8211-b26324e65bb7","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Assigning entitlements for subaccount.","createdDate":"Feb 18, 2026, 6:00:57 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:01:18 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Mar 3, 2026, 2:14:55 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:14:56 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -397,7 +397,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:01:18 GMT
+ - Tue, 03 Mar 2026 14:15:16 GMT
Expires:
- "0"
Pragma:
@@ -415,12 +415,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 7f4bff14-a4bd-452e-6553-54b4a2f0bc8d
+ - 70d0ae84-db23-4cee-6adb-d5724b8ac469
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 296.689375ms
+ duration: 80.384125ms
- id: 6
request:
proto: HTTP/1.1
@@ -433,7 +433,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a6d907a8-10d3-4742-8211-b26324e65bb7"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a"}}
form: {}
headers:
Content-Type:
@@ -441,7 +441,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 2de4434c-c41c-8c76-83db-a63d3e93cc6f
+ - ca940ef4-afae-b847-23d2-7e66390fc6c9
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -460,7 +460,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"a6d907a8-10d3-4742-8211-b26324e65bb7","technicalName":"a6d907a8-10d3-4742-8211-b26324e65bb7","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:00:57 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:01:27 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","technicalName":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Assigning entitlements for subaccount.","createdDate":"Mar 3, 2026, 2:14:55 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:15:22 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -469,7 +469,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:01:29 GMT
+ - Tue, 03 Mar 2026 14:15:26 GMT
Expires:
- "0"
Pragma:
@@ -487,18 +487,90 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 9c07a165-980b-4e16-44a3-3cc3c1503b3e
+ - bfcaea3d-e801-43c8-44d6-acb01d03ae76
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 351.380875ms
+ duration: 75.514584ms
- id: 7
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 107
+ transfer_encoding: []
+ trailer: {}
+ host: canary.cli.btp.int.sap
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a"}}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Terraform/1.14.5 terraform-provider-btp/dev
+ X-Correlationid:
+ - a08c2cb5-3420-7f54-438f-9f80fd10c8ac
+ X-Cpcli-Customidp:
+ - identityProvider
+ X-Cpcli-Format:
+ - json
+ X-Cpcli-Sessionid:
+ - redacted
+ X-Cpcli-Subdomain:
+ - terraformintcanary
+ url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?get
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"guid":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","technicalName":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:14:55 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:15:31 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
+ headers:
+ Cache-Control:
+ - no-cache, no-store, max-age=0, must-revalidate
+ Content-Security-Policy:
+ - default-src 'self'
+ Content-Type:
+ - application/json
+ Date:
+ - Tue, 03 Mar 2026 14:15:36 GMT
+ Expires:
+ - "0"
+ Pragma:
+ - no-cache
+ Referrer-Policy:
+ - no-referrer
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload;
+ X-Content-Type-Options:
+ - nosniff
+ X-Cpcli-Backend-Mediatype:
+ - application/json;charset=UTF-8
+ X-Cpcli-Backend-Status:
+ - "200"
+ X-Frame-Options:
+ - DENY
+ X-Vcap-Request-Id:
+ - 2af21855-9b0c-4085-7e29-9d244da2964f
+ X-Xss-Protection:
+ - "1"
+ status: 200 OK
+ code: 200
+ duration: 71.622125ms
+ - id: 8
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -513,7 +585,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 870e8892-dcd8-05e4-dd87-c7947cd4126b
+ - 86bdc76b-7a72-be9c-26ed-6088be4c82ff
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -524,20 +596,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:01:32 GMT
+ - Tue, 03 Mar 2026 14:15:37 GMT
Expires:
- "0"
Pragma:
@@ -553,18 +625,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 6e902a69-56c9-4e89-72cd-240471190382
+ - e4df31b5-a259-4904-479a-0cfe512ebf0c
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 2.983639834s
- - id: 8
+ duration: 680.706292ms
+ - id: 9
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -579,7 +651,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 9cb9b427-daec-dbda-2812-1be48978bfd5
+ - 9392a5f3-463c-ad0f-c240-84ff551dd96f
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -590,20 +662,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:01:32 GMT
+ - Tue, 03 Mar 2026 14:15:37 GMT
Expires:
- "0"
Pragma:
@@ -619,13 +691,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 4d412d37-d1b6-4378-773b-502d60450060
+ - 4b57ef63-234b-4fb9-77fa-2e91b46f7928
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 466.626667ms
- - id: 9
+ duration: 534.406875ms
+ - id: 10
request:
proto: HTTP/1.1
proto_major: 1
@@ -637,7 +709,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a6d907a8-10d3-4742-8211-b26324e65bb7"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a"}}
form: {}
headers:
Content-Type:
@@ -645,7 +717,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - b4148071-4ed9-7f59-c3bb-0534b45fc39b
+ - 1f33fd99-5454-e175-2890-f1af0ed4e797
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -664,7 +736,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"a6d907a8-10d3-4742-8211-b26324e65bb7","technicalName":"a6d907a8-10d3-4742-8211-b26324e65bb7","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:00:57 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:01:27 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","technicalName":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:14:55 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:15:31 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -673,7 +745,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:01:33 GMT
+ - Tue, 03 Mar 2026 14:15:38 GMT
Expires:
- "0"
Pragma:
@@ -691,18 +763,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 0d36bbea-7102-4575-46f2-a06ee9ce1485
+ - df9045a0-ced1-42b2-67ea-d52aa1c5f903
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 459.854126ms
- - id: 10
+ duration: 233.669417ms
+ - id: 11
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -717,7 +789,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - c8fb0bdb-acfd-6e68-b517-44e201472cc0
+ - b79e70bc-eb1c-83ca-8f5a-3edc68e43c31
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -728,20 +800,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:01:36 GMT
+ - Tue, 03 Mar 2026 14:15:38 GMT
Expires:
- "0"
Pragma:
@@ -757,13 +829,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 7a58ab92-bb48-42e8-6b12-b7b1f897d574
+ - d760f70c-1cc4-4831-4c35-d5a6812ead56
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 3.10962296s
- - id: 11
+ duration: 537.248ms
+ - id: 12
request:
proto: HTTP/1.1
proto_major: 1
@@ -775,7 +847,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a6d907a8-10d3-4742-8211-b26324e65bb7"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a"}}
form: {}
headers:
Content-Type:
@@ -783,7 +855,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - f9007300-0940-ade1-e87f-b877bd36befc
+ - d1cd6599-a1ba-8dce-6d66-58947894b811
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -802,7 +874,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"a6d907a8-10d3-4742-8211-b26324e65bb7","technicalName":"a6d907a8-10d3-4742-8211-b26324e65bb7","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:00:57 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:01:27 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","technicalName":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:14:55 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:15:31 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -811,7 +883,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:01:37 GMT
+ - Tue, 03 Mar 2026 14:15:38 GMT
Expires:
- "0"
Pragma:
@@ -829,18 +901,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 7167e362-23a3-4f45-49dc-13fe738f79a0
+ - 7a379037-00b6-4740-7963-ef6157393858
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 391.231125ms
- - id: 12
+ duration: 199.531459ms
+ - id: 13
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -855,7 +927,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 2183202c-b142-7b55-bc76-97ffcf1b488c
+ - e37a2eb8-fa18-cd28-3741-4ba26c268b6b
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -866,20 +938,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:01:37 GMT
+ - Tue, 03 Mar 2026 14:15:39 GMT
Expires:
- "0"
Pragma:
@@ -895,13 +967,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - fafdc5a0-43bf-49c6-63e8-51c3361210c3
+ - 4173fc69-ed44-41be-66ca-b1a3d12d5790
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 400.08775ms
- - id: 13
+ duration: 483.247125ms
+ - id: 14
request:
proto: HTTP/1.1
proto_major: 1
@@ -913,7 +985,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"betaEnabled":"false","directoryID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"Integration Test Acc Dyn","globalAccount":"terraformintcanary","labels":"{}","subaccount":"a6d907a8-10d3-4742-8211-b26324e65bb7"}}
+ {"paramValues":{"betaEnabled":"false","directoryID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"Integration Test Acc Dyn","globalAccount":"terraformintcanary","labels":"{}","subaccount":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a"}}
form: {}
headers:
Content-Type:
@@ -921,7 +993,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 86c752dc-484e-e61d-38d3-63ed10e1c3aa
+ - 735a085f-4f83-4a6e-55bf-2e59120d07c2
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -940,7 +1012,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"a6d907a8-10d3-4742-8211-b26324e65bb7","technicalName":"a6d907a8-10d3-4742-8211-b26324e65bb7","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","description":null,"state":"OK","stateMessage":"Subaccount created.","contentAutomationState":null,"contentAutomationStateDetails":null,"createdDate":1771394457753,"createdBy":"john.doe@int.test","modifiedDate":1771394498053,"contractStatus":"ACTIVE"}'
+ body: '{"guid":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","technicalName":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","description":null,"state":"OK","stateMessage":"Subaccount created.","contentAutomationState":null,"contentAutomationStateDetails":null,"createdDate":1772547295861,"createdBy":"john.doe@int.test","modifiedDate":1772547339765,"contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -949,7 +1021,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:01:38 GMT
+ - Tue, 03 Mar 2026 14:15:39 GMT
Expires:
- "0"
Pragma:
@@ -967,13 +1039,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - bd4eff13-6472-47d2-4091-0ca5cf0f27df
+ - ec854ee4-24cb-4684-7f98-f6eca7c58aed
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 863.709042ms
- - id: 14
+ duration: 391.736583ms
+ - id: 15
request:
proto: HTTP/1.1
proto_major: 1
@@ -985,7 +1057,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a6d907a8-10d3-4742-8211-b26324e65bb7"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a"}}
form: {}
headers:
Content-Type:
@@ -993,7 +1065,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - b2820d88-dc7d-13ca-cce9-b82d8e088727
+ - fb8dec0b-ecf5-6038-8c09-72ba438887dc
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1012,7 +1084,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"a6d907a8-10d3-4742-8211-b26324e65bb7","technicalName":"a6d907a8-10d3-4742-8211-b26324e65bb7","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:00:57 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:01:38 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","technicalName":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:14:55 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:15:39 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1021,7 +1093,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:01:43 GMT
+ - Tue, 03 Mar 2026 14:15:45 GMT
Expires:
- "0"
Pragma:
@@ -1039,18 +1111,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 6c317bb1-ff87-4b8e-57af-8af5e8ab536f
+ - 400a5507-16c6-4f21-4e7f-8f33a863c9c3
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 297.220833ms
- - id: 15
+ duration: 100.484ms
+ - id: 16
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -1065,7 +1137,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 87dc4a24-7720-714e-bcf8-ae24550a9979
+ - e7f79c04-e258-d023-17e4-4451899d4730
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -1076,20 +1148,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:01:46 GMT
+ - Tue, 03 Mar 2026 14:15:45 GMT
Expires:
- "0"
Pragma:
@@ -1105,18 +1177,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 5de17701-df50-4932-67ff-324a9a5662a7
+ - eff3c236-2d28-4848-6f6f-5ffc86a7c697
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 2.521673501s
- - id: 16
+ duration: 420.978959ms
+ - id: 17
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -1131,7 +1203,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - bc92533c-7f10-0d48-d8fb-c631c3245089
+ - 161541d5-5cb1-d7f7-211b-68cab01d2756
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -1142,20 +1214,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:01:46 GMT
+ - Tue, 03 Mar 2026 14:15:46 GMT
Expires:
- "0"
Pragma:
@@ -1171,13 +1243,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 0db3f19d-7aeb-4beb-62b3-6141aadb39d7
+ - 1693ca13-cf39-47c2-773f-c3c79b435abe
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 448.561958ms
- - id: 17
+ duration: 677.201834ms
+ - id: 18
request:
proto: HTTP/1.1
proto_major: 1
@@ -1189,7 +1261,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a6d907a8-10d3-4742-8211-b26324e65bb7"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a"}}
form: {}
headers:
Content-Type:
@@ -1197,7 +1269,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 8648eb6d-787b-b882-c6e8-7f06d35f41b2
+ - fd4aa85a-b300-4bdf-9a88-3a535a37d93c
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1216,7 +1288,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"a6d907a8-10d3-4742-8211-b26324e65bb7","technicalName":"a6d907a8-10d3-4742-8211-b26324e65bb7","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:00:57 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:01:38 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","technicalName":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:14:55 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:15:39 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1225,7 +1297,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:01:47 GMT
+ - Tue, 03 Mar 2026 14:15:46 GMT
Expires:
- "0"
Pragma:
@@ -1243,18 +1315,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 95d866ba-a3ed-4fda-556f-e99a807aacf9
+ - 3f2ca86b-f431-4ebe-4178-dc176e9da1ea
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 455.728875ms
- - id: 18
+ duration: 252.937625ms
+ - id: 19
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -1269,7 +1341,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 0b3e489e-4989-c0e4-776d-1b3ad28c92e4
+ - 82962280-2cc7-0339-f2cf-321a0c77773c
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -1280,20 +1352,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:01:51 GMT
+ - Tue, 03 Mar 2026 14:15:47 GMT
Expires:
- "0"
Pragma:
@@ -1309,13 +1381,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 8c9c2156-afb1-4388-674b-2661e7acab32
+ - 6b5b681b-2341-4a38-5fa0-7ae5a1891f69
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 4.01532596s
- - id: 19
+ duration: 374.7075ms
+ - id: 20
request:
proto: HTTP/1.1
proto_major: 1
@@ -1327,7 +1399,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a6d907a8-10d3-4742-8211-b26324e65bb7"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a"}}
form: {}
headers:
Content-Type:
@@ -1335,7 +1407,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 1dea7b18-8fbb-1ff3-c4d4-a95249c38b8b
+ - 9e8a412c-7043-fa56-a8c4-147f2d601439
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1354,7 +1426,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"a6d907a8-10d3-4742-8211-b26324e65bb7","technicalName":"a6d907a8-10d3-4742-8211-b26324e65bb7","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:00:57 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:01:38 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","technicalName":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:14:55 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:15:39 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1363,7 +1435,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:01:51 GMT
+ - Tue, 03 Mar 2026 14:15:47 GMT
Expires:
- "0"
Pragma:
@@ -1381,18 +1453,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 7b84ca10-4627-4ecb-505e-fc1a7d8954d4
+ - 6f37516d-a4f4-4de0-6d3c-1e3e8d214e46
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 478.296917ms
- - id: 20
+ duration: 263.425792ms
+ - id: 21
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -1407,7 +1479,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - bad2035c-cd19-326c-0426-cb3e5a77e7aa
+ - 98b4c392-21ef-6f9d-5852-ccf7af72536f
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -1418,20 +1490,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:01:52 GMT
+ - Tue, 03 Mar 2026 14:15:47 GMT
Expires:
- "0"
Pragma:
@@ -1447,18 +1519,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 9b5b5edc-3a3e-4380-76b7-7496fce02275
+ - 177a3512-f28e-47ff-721f-471b42afb4c9
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 427.840958ms
- - id: 21
+ duration: 500.108ms
+ - id: 22
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -1473,7 +1545,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - c2aa27d1-1276-87e7-9e27-8083dfca3821
+ - f5b32b78-e7dc-dc67-412f-0168d5f34f50
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -1484,20 +1556,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:01:52 GMT
+ - Tue, 03 Mar 2026 14:15:48 GMT
Expires:
- "0"
Pragma:
@@ -1513,13 +1585,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - dc175561-194e-4e7c-5139-b0c63996b102
+ - 4a0b95ef-a009-46de-7fda-f975b8be31d3
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 442.150167ms
- - id: 22
+ duration: 451.826083ms
+ - id: 23
request:
proto: HTTP/1.1
proto_major: 1
@@ -1539,7 +1611,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - eae30b85-2bf1-c2cc-2793-e567676ae16b
+ - c6c1b6be-0fc9-153b-acad-2c24de2c76c4
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1558,7 +1630,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"commercialModel":"Subscription","consumptionBased":false,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101000297","useFor":"Testing","origin":"OPERATOR","guid":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"terraform-integration-canary","description":"Global Account for Integration tests for the Terraform provider for SAP BTP on Canary Landscape\nSee https://github.com/SAP/terraform-provider-btp ","createdDate":"May 11, 2023, 8:59:23 AM","modifiedDate":"Feb 10, 2026, 4:55:39 AM","children":[{"guid":"14870944-4832-4e76-83f7-d2913661cf6d","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-se-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 23, 2025, 5:52:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jan 23, 2025, 6:03:51 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"14870944-4832-4e76-83f7-d2913661cf6d","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"customProperties":[{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":"Label text 1"},{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"},{"guid":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-roles","description":"PLEASE DO NOT DELETE!! This dir is used for integration test","createdDate":"Jul 18, 2024, 6:49:00 AM","createdBy":"john.doe+2@int.test","modifiedDate":"Jul 18, 2024, 7:49:40 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"},{"guid":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 27, 2025, 6:50:51 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Jan 29, 2025, 6:17:41 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"},{"guid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements","createdDate":"Oct 6, 2023, 9:57:23 AM","createdBy":"john.doe+4@int.test","modifiedDate":"Feb 17, 2026, 7:48:19 AM","children":[{"guid":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentGuid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGUID":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements-stacked","createdDate":"Oct 6, 2023, 9:58:25 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Oct 6, 2023, 9:58:25 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+6@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"},{"guid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization","createdDate":"May 30, 2025, 2:23:53 PM","createdBy":"john.doe+7@int.test","modifiedDate":"May 30, 2025, 2:24:04 PM","children":[{"guid":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentGuid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization-stacked","createdDate":"May 30, 2025, 2:24:48 PM","createdBy":"john.doe+8@int.test","modifiedDate":"May 30, 2025, 2:24:48 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Directory created.","subdomain":"a9546df7-214e-4414-9191-3d6adfc9cb53","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Global account updated.","subdomain":"terraformintcanary","subaccounts":[{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+9@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+10@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE"},{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+11@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe+12@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+13@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+14@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE"},{"guid":"a6d907a8-10d3-4742-8211-b26324e65bb7","technicalName":"a6d907a8-10d3-4742-8211-b26324e65bb7","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:00:57 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:01:38 AM","contractStatus":"ACTIVE"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe+15@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+16@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE"}],"contractStatus":"ACTIVE"}'
+ body: '{"commercialModel":"Subscription","consumptionBased":false,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101000297","useFor":"Testing","origin":"OPERATOR","guid":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"terraform-integration-canary","description":"Global Account for Integration tests for the Terraform provider for SAP BTP on Canary Landscape\nSee https://github.com/SAP/terraform-provider-btp ","createdDate":"May 11, 2023, 8:59:23 AM","modifiedDate":"Feb 10, 2026, 4:55:39 AM","children":[{"guid":"14870944-4832-4e76-83f7-d2913661cf6d","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-se-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 23, 2025, 5:52:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jan 23, 2025, 6:03:51 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"14870944-4832-4e76-83f7-d2913661cf6d","directoryType":"PROJECT","directoryFeatures":["ENTITLEMENTS","DEFAULT","AUTHORIZATIONS"],"customProperties":[{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":"Label text 1"},{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"},{"guid":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-roles","description":"PLEASE DO NOT DELETE!! This dir is used for integration test","createdDate":"Jul 18, 2024, 6:49:00 AM","createdBy":"john.doe+2@int.test","modifiedDate":"Jul 18, 2024, 7:49:40 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","directoryType":"PROJECT","directoryFeatures":["ENTITLEMENTS","DEFAULT","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 27, 2025, 6:50:51 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Jan 29, 2025, 6:17:41 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","directoryType":"PROJECT","directoryFeatures":["ENTITLEMENTS","DEFAULT","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements","createdDate":"Oct 6, 2023, 9:57:23 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 17, 2026, 7:48:19 AM","children":[{"guid":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentGuid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGUID":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements-stacked","createdDate":"Oct 6, 2023, 9:58:25 AM","createdBy":"john.doe@int.test","modifiedDate":"Oct 6, 2023, 9:58:25 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+4@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+5@int.test"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","directoryType":"PROJECT","directoryFeatures":["ENTITLEMENTS","DEFAULT","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization","createdDate":"May 30, 2025, 2:23:53 PM","createdBy":"john.doe@int.test","modifiedDate":"May 30, 2025, 2:24:04 PM","children":[{"guid":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentGuid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization-stacked","createdDate":"May 30, 2025, 2:24:48 PM","createdBy":"john.doe@int.test","modifiedDate":"May 30, 2025, 2:24:48 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Directory created.","subdomain":"a9546df7-214e-4414-9191-3d6adfc9cb53","directoryType":"PROJECT","directoryFeatures":["ENTITLEMENTS","DEFAULT","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-disaster-revovery","description":"Directory conatining two paired DR subaccounts","createdDate":"Feb 27, 2026, 11:33:23 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:33:23 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"badbcbf8-eca7-4472-9f66-cb9887ba7c3d","technicalName":"badbcbf8-eca7-4472-9f66-cb9887ba7c3d","displayName":"integration-test-dr-subaccount-eu12","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-dr-subaccount-eu12-99p94dot","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 11:34:34 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:34:59 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"2dc1ecf1-786c-4f92-91f2-26650ab3ad28","technicalName":"2dc1ecf1-786c-4f92-91f2-26650ab3ad28","displayName":"integration-test-dr-to-be-paired-eu12","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-dr-to-be-paired-eu12-8tu9lgxa","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 12:59:03 PM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 12:59:34 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"f59b5902-d24c-446c-b245-92c814faa0d9","technicalName":"f59b5902-d24c-446c-b245-92c814faa0d9","displayName":"integration-test-dr-to-be-paired-eu10-canary","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu10-canary","subdomain":"integration-test-dr-to-be-paired-eu10-canacry-hqhkrthv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 12:58:30 PM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 12:59:17 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"608858ef-5829-4aa6-88e7-0e220ef1aaeb","technicalName":"608858ef-5829-4aa6-88e7-0e220ef1aaeb","displayName":"integration-test-dr-subaccount-eu10-canary","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu10-canary","subdomain":"integration-test-dr-subaccount-eu10-canary-ls0upaxs","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 11:34:09 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:34:29 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Global account updated.","subdomain":"terraformintcanary","subaccounts":[{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+6@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+7@int.test"},{"guid":"b7ed3f66-5b6d-4290-856c-099e9e3cbb1b","technicalName":"b7ed3f66-5b6d-4290-856c-099e9e3cbb1b","displayName":"integration-test-ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-ias-408hsvn1","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test bundled applications on the SAP Cloud Identity Services Provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 8:47:42 AM","createdBy":"john.doe+8@int.test","modifiedDate":"Feb 27, 2026, 8:48:09 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+9@int.test"},{"guid":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","technicalName":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:14:55 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:15:39 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+10@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+11@int.test"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+12@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+13@int.test"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+14@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+15@int.test"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+16@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+17@int.test"},{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe+18@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+19@int.test"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+20@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+21@int.test"}],"contractStatus":"ACTIVE"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1567,7 +1639,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:01:53 GMT
+ - Tue, 03 Mar 2026 14:15:48 GMT
Expires:
- "0"
Pragma:
@@ -1585,25 +1657,25 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - f74c0a6f-8406-4654-4ad5-29eef91c52bd
+ - e4a9c675-71b9-4224-45bf-5be5431e3b8c
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 424.895542ms
- - id: 23
+ duration: 229.905083ms
+ - id: 24
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 145
+ content_length: 146
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"confirm":"true","forceDelete":"true","globalAccount":"terraformintcanary","subaccount":"a6d907a8-10d3-4742-8211-b26324e65bb7"}}
+ {"paramValues":{"confirm":"true","forceDelete":"false","globalAccount":"terraformintcanary","subaccount":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a"}}
form: {}
headers:
Content-Type:
@@ -1611,7 +1683,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - e4cad105-a4cb-dc50-d824-a5d028657fa8
+ - 44fc10c5-421d-4b2c-5ed6-a1beadeba026
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1630,7 +1702,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"a6d907a8-10d3-4742-8211-b26324e65bb7","technicalName":"a6d907a8-10d3-4742-8211-b26324e65bb7","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Delete subaccount entity","createdDate":"Feb 18, 2026, 6:00:57 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:01:38 AM","contractStatus":"ACTIVE","jobId":"23893506"}'
+ body: '{"guid":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","technicalName":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Delete subaccount entity","createdDate":"Mar 3, 2026, 2:14:55 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:15:39 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test","jobId":"24061098"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1639,7 +1711,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:01:53 GMT
+ - Tue, 03 Mar 2026 14:15:49 GMT
Expires:
- "0"
Pragma:
@@ -1657,13 +1729,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - e7c97806-a577-4cfc-526c-419f1fb48436
+ - 3c8054ff-837f-469d-409f-52e9e8401ea1
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 372.7385ms
- - id: 24
+ duration: 472.759667ms
+ - id: 25
request:
proto: HTTP/1.1
proto_major: 1
@@ -1675,7 +1747,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a6d907a8-10d3-4742-8211-b26324e65bb7"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a"}}
form: {}
headers:
Content-Type:
@@ -1683,7 +1755,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 7b636ab5-327a-fe06-3f7d-363101063e56
+ - 565b2a8c-5a23-b7fc-c9fa-f9e08a0d1fa2
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1702,7 +1774,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"a6d907a8-10d3-4742-8211-b26324e65bb7","technicalName":"a6d907a8-10d3-4742-8211-b26324e65bb7","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Feb 18, 2026, 6:00:57 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:01:54 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","technicalName":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:14:55 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:15:50 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1711,7 +1783,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:01:59 GMT
+ - Tue, 03 Mar 2026 14:15:54 GMT
Expires:
- "0"
Pragma:
@@ -1729,13 +1801,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - d893a551-21f0-42c3-5b1d-3418a0dc0fe9
+ - 51143b64-69c6-4888-757b-efe83cf26275
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 320.493417ms
- - id: 25
+ duration: 90.869125ms
+ - id: 26
request:
proto: HTTP/1.1
proto_major: 1
@@ -1747,7 +1819,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a6d907a8-10d3-4742-8211-b26324e65bb7"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a"}}
form: {}
headers:
Content-Type:
@@ -1755,7 +1827,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - a82a62c8-d83c-f907-8197-f1d6ae82aa5e
+ - 8126e2a8-d28f-97b0-66f9-546421ec087a
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1774,7 +1846,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"a6d907a8-10d3-4742-8211-b26324e65bb7","technicalName":"a6d907a8-10d3-4742-8211-b26324e65bb7","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Feb 18, 2026, 6:00:57 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:01:54 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","technicalName":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:14:55 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:15:50 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1783,7 +1855,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:02:04 GMT
+ - Tue, 03 Mar 2026 14:15:59 GMT
Expires:
- "0"
Pragma:
@@ -1801,13 +1873,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 33c8d192-3503-4bc7-73ea-b4efc93cb9ed
+ - af2046ae-89d1-49a9-4397-cebce679448b
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 281.467584ms
- - id: 26
+ duration: 89.06575ms
+ - id: 27
request:
proto: HTTP/1.1
proto_major: 1
@@ -1819,7 +1891,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a6d907a8-10d3-4742-8211-b26324e65bb7"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a"}}
form: {}
headers:
Content-Type:
@@ -1827,7 +1899,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 66cabf59-ca36-bd53-5b37-3e8c8c730027
+ - 714031dc-8e46-df5c-a9f2-5dba154551fc
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1846,7 +1918,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"a6d907a8-10d3-4742-8211-b26324e65bb7","technicalName":"a6d907a8-10d3-4742-8211-b26324e65bb7","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Feb 18, 2026, 6:00:57 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:01:54 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","technicalName":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a","displayName":"Integration Test Acc Dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:14:55 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:15:50 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1855,7 +1927,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:02:14 GMT
+ - Tue, 03 Mar 2026 14:16:09 GMT
Expires:
- "0"
Pragma:
@@ -1873,13 +1945,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - d03e7763-2e0c-4125-4090-f6a4ea39689f
+ - cc6bd925-6bab-41af-6fac-4373ecd566fd
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 287.57675ms
- - id: 27
+ duration: 112.842833ms
+ - id: 28
request:
proto: HTTP/1.1
proto_major: 1
@@ -1891,7 +1963,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a6d907a8-10d3-4742-8211-b26324e65bb7"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a"}}
form: {}
headers:
Content-Type:
@@ -1899,7 +1971,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 8a453de1-40e5-0392-a806-e19864a10fe1
+ - d48f2073-18a3-df1a-de8e-b25f428ba927
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1918,7 +1990,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"error":"Subaccount a6d907a8-10d3-4742-8211-b26324e65bb7 not found [Error: 20004/404]"}'
+ body: '{"error":"Subaccount a8dcc520-cc0a-4d78-a1f7-c5c214e8e18a not found [Error: 20004/404]"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1927,7 +1999,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:02:25 GMT
+ - Tue, 03 Mar 2026 14:16:19 GMT
Expires:
- "0"
Pragma:
@@ -1945,9 +2017,9 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - fd6acf97-d6ce-49ae-7a1b-8475f429da1a
+ - 78667d80-5677-430a-4887-20d17d7d54f3
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 385.848042ms
+ duration: 137.243625ms
diff --git a/btp/provider/fixtures/resource_subaccount_with_import.yaml b/btp/provider/fixtures/resource_subaccount_with_import.yaml
index 959acd68..cf30d947 100644
--- a/btp/provider/fixtures/resource_subaccount_with_import.yaml
+++ b/btp/provider/fixtures/resource_subaccount_with_import.yaml
@@ -6,7 +6,7 @@ interactions:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -21,7 +21,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - b6fd13d2-375a-0c0b-4ecb-f3745c7507cf
+ - 94a2f939-0c0b-a421-1b1f-cc4bf75e9738
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -32,20 +32,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:02:27 GMT
+ - Tue, 03 Mar 2026 14:17:17 GMT
Expires:
- "0"
Pragma:
@@ -61,18 +61,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - db65e97b-9932-4df0-5d09-20cf1a716c96
+ - 52d23c4a-5663-47be-4193-d20bb4cf8ea6
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 2.66783271s
+ duration: 923.323125ms
- id: 1
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -87,7 +87,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - f24a3b92-5da6-15ed-620f-a9b7b1b58c2f
+ - ed6e6e4e-3c66-b824-e671-5f1519c09aec
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -98,20 +98,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:02:28 GMT
+ - Tue, 03 Mar 2026 14:17:18 GMT
Expires:
- "0"
Pragma:
@@ -127,12 +127,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 150b61f0-c043-4b84-6dbb-c8f2193a7727
+ - 2f7cb17d-de9c-4702-60de-0e4b1fbd400c
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 453.120167ms
+ duration: 606.251125ms
- id: 2
request:
proto: HTTP/1.1
@@ -153,7 +153,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 5554a9f7-9184-6154-ea79-b27a23a98b2b
+ - 309bb550-0f65-0d03-5a13-463c7d5f5ec6
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -172,7 +172,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","technicalName":"N\/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"STARTED","createdDate":"Feb 18, 2026, 6:02:28 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:02:28 AM","contractStatus":"ACTIVE","jobId":"23893510"}'
+ body: '{"guid":"dae0918f-73c3-4c41-9d8a-f10b6829b22f","technicalName":"N\/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"STARTED","createdDate":"Mar 3, 2026, 2:17:18 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:17:18 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test","jobId":"24061108"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -181,7 +181,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:02:28 GMT
+ - Tue, 03 Mar 2026 14:17:18 GMT
Expires:
- "0"
Pragma:
@@ -199,12 +199,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - c43ecc95-44a6-4039-6891-a89b8909d0eb
+ - c229c3ed-bd44-43c9-61c9-1fd0c39de474
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 527.178458ms
+ duration: 407.214792ms
- id: 3
request:
proto: HTTP/1.1
@@ -217,7 +217,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"dae0918f-73c3-4c41-9d8a-f10b6829b22f"}}
form: {}
headers:
Content-Type:
@@ -225,7 +225,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - ff644b3c-3ce3-0798-2325-e88e309391c8
+ - cbbf772b-35e1-60af-396b-09b619e71077
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -244,7 +244,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Feb 18, 2026, 6:02:28 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:02:29 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"dae0918f-73c3-4c41-9d8a-f10b6829b22f","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Mar 3, 2026, 2:17:18 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:17:19 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -253,7 +253,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:02:34 GMT
+ - Tue, 03 Mar 2026 14:17:23 GMT
Expires:
- "0"
Pragma:
@@ -271,12 +271,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 873c4830-beb0-4e3d-40cf-582b589fe802
+ - fceb6bca-a53d-4e8e-579c-9973a02d3a3e
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 301.031375ms
+ duration: 140.045583ms
- id: 4
request:
proto: HTTP/1.1
@@ -289,7 +289,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"dae0918f-73c3-4c41-9d8a-f10b6829b22f"}}
form: {}
headers:
Content-Type:
@@ -297,7 +297,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 81dba6b0-44f9-8a56-5b89-e3599e9bff5a
+ - c8930ebc-45a9-6d19-dd73-47c8e65603a2
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -316,7 +316,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Feb 18, 2026, 6:02:28 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:02:29 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"dae0918f-73c3-4c41-9d8a-f10b6829b22f","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Mar 3, 2026, 2:17:18 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:17:19 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -325,7 +325,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:02:39 GMT
+ - Tue, 03 Mar 2026 14:17:29 GMT
Expires:
- "0"
Pragma:
@@ -343,12 +343,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 40cc73e2-6ab5-451f-7c93-49e8dd4ff166
+ - bd2100bb-b8e9-4960-49e8-23a8899b9c9b
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 279.327709ms
+ duration: 109.341708ms
- id: 5
request:
proto: HTTP/1.1
@@ -361,7 +361,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"dae0918f-73c3-4c41-9d8a-f10b6829b22f"}}
form: {}
headers:
Content-Type:
@@ -369,7 +369,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 3a32b590-39af-1487-0d2d-621049a915d1
+ - 2abf328b-39ef-fb6b-e163-03f065697687
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -388,7 +388,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","technicalName":"N/A","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Creating subaccount tenant.","createdDate":"Feb 18, 2026, 6:02:28 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:02:29 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"dae0918f-73c3-4c41-9d8a-f10b6829b22f","technicalName":"dae0918f-73c3-4c41-9d8a-f10b6829b22f","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Assigning entitlements for subaccount.","createdDate":"Mar 3, 2026, 2:17:18 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:17:37 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -397,7 +397,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:02:49 GMT
+ - Tue, 03 Mar 2026 14:17:39 GMT
Expires:
- "0"
Pragma:
@@ -415,12 +415,12 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - df155b14-0c21-494a-76fd-8a8099e2d122
+ - cca7e516-470e-471c-5730-dbe90dd415de
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 340.624875ms
+ duration: 170.472166ms
- id: 6
request:
proto: HTTP/1.1
@@ -433,7 +433,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"dae0918f-73c3-4c41-9d8a-f10b6829b22f"}}
form: {}
headers:
Content-Type:
@@ -441,7 +441,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 3671b70c-29d7-423a-f05a-0f19f70e9f2f
+ - 246e18e7-1e62-2911-8484-0f735e0ea385
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -460,7 +460,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","technicalName":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"CREATING","stateMessage":"Assigning entitlements for subaccount.","createdDate":"Feb 18, 2026, 6:02:28 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:02:52 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"dae0918f-73c3-4c41-9d8a-f10b6829b22f","technicalName":"dae0918f-73c3-4c41-9d8a-f10b6829b22f","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:17:18 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:17:46 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -469,7 +469,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:03:00 GMT
+ - Tue, 03 Mar 2026 14:17:49 GMT
Expires:
- "0"
Pragma:
@@ -487,90 +487,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 51178fb7-062d-4fcb-76a7-d124c147f7f6
+ - 1df4db4e-1284-41a0-5201-a36c8a406b1d
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 394.200874ms
+ duration: 163.533ms
- id: 7
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 107
- transfer_encoding: []
- trailer: {}
- host: canary.cli.btp.int.sap
- remote_addr: ""
- request_uri: ""
- body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b"}}
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Terraform/1.14.5 terraform-provider-btp/dev
- X-Correlationid:
- - 5444eaa1-7719-e349-2d60-4a622892f486
- X-Cpcli-Customidp:
- - identityProvider
- X-Cpcli-Format:
- - json
- X-Cpcli-Sessionid:
- - redacted
- X-Cpcli-Subdomain:
- - terraformintcanary
- url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?get
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: -1
- uncompressed: true
- body: '{"guid":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","technicalName":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:02:28 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:03:03 AM","contractStatus":"ACTIVE"}'
- headers:
- Cache-Control:
- - no-cache, no-store, max-age=0, must-revalidate
- Content-Security-Policy:
- - default-src 'self'
- Content-Type:
- - application/json
- Date:
- - Wed, 18 Feb 2026 06:03:10 GMT
- Expires:
- - "0"
- Pragma:
- - no-cache
- Referrer-Policy:
- - no-referrer
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains; preload;
- X-Content-Type-Options:
- - nosniff
- X-Cpcli-Backend-Mediatype:
- - application/json;charset=UTF-8
- X-Cpcli-Backend-Status:
- - "200"
- X-Frame-Options:
- - DENY
- X-Vcap-Request-Id:
- - b53e6b07-92cc-4307-5580-691497795f48
- X-Xss-Protection:
- - "1"
- status: 200 OK
- code: 200
- duration: 317.446125ms
- - id: 8
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -585,7 +513,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - bdfc07b1-215d-78ce-57b7-b75e0fbacf5a
+ - 766d0e93-5d04-9771-4cf5-768010400f00
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -596,20 +524,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:03:13 GMT
+ - Tue, 03 Mar 2026 14:17:50 GMT
Expires:
- "0"
Pragma:
@@ -625,18 +553,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 881c487a-68fc-47f3-785a-28fb05362695
+ - b9873087-fffe-44c4-4d30-1d4c13846f2e
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 2.727414502s
- - id: 9
+ duration: 552.247584ms
+ - id: 8
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -651,7 +579,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - a61303ff-a5f6-6291-f809-629bc96db552
+ - 5d8ff5d0-0dec-040b-3ed2-e20adc23a5be
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -662,20 +590,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:03:14 GMT
+ - Tue, 03 Mar 2026 14:17:50 GMT
Expires:
- "0"
Pragma:
@@ -691,13 +619,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 76578ec1-b373-46f5-6309-1228c1895e33
+ - a19b1fa0-f5b6-4568-6744-978e0ff831ab
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 522.10475ms
- - id: 10
+ duration: 820.026375ms
+ - id: 9
request:
proto: HTTP/1.1
proto_major: 1
@@ -709,7 +637,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"dae0918f-73c3-4c41-9d8a-f10b6829b22f"}}
form: {}
headers:
Content-Type:
@@ -717,7 +645,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - e9fa3c0d-0a02-80ec-b2a2-2b90ee82e82b
+ - 78dd4fec-ee36-27e7-390c-f3e30535f41a
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -736,7 +664,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","technicalName":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:02:28 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:03:03 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"dae0918f-73c3-4c41-9d8a-f10b6829b22f","technicalName":"dae0918f-73c3-4c41-9d8a-f10b6829b22f","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:17:18 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:17:46 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -745,7 +673,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:03:14 GMT
+ - Tue, 03 Mar 2026 14:17:51 GMT
Expires:
- "0"
Pragma:
@@ -763,18 +691,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - e51129bc-9fc3-4f81-7efe-a9b7b2644670
+ - 1b3e0899-e4e2-4034-43f2-175299411725
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 557.883542ms
- - id: 11
+ duration: 262.372292ms
+ - id: 10
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -789,7 +717,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 277fddb0-29d1-9583-d6c7-8c16349d01f1
+ - f44b5b0b-6bc1-0838-7cb3-7ac046eec1ad
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -800,20 +728,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:03:18 GMT
+ - Tue, 03 Mar 2026 14:17:51 GMT
Expires:
- "0"
Pragma:
@@ -829,13 +757,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - f14a07bb-c2db-4774-5f4b-3fe518906415
+ - 96d95b6e-a385-4e41-7ea4-3166c9ebdff2
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 3.935449211s
- - id: 12
+ duration: 541.575375ms
+ - id: 11
request:
proto: HTTP/1.1
proto_major: 1
@@ -847,7 +775,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"dae0918f-73c3-4c41-9d8a-f10b6829b22f"}}
form: {}
headers:
Content-Type:
@@ -855,7 +783,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 805c78da-5a7e-f24a-b27b-3a819a1369e1
+ - 6446ba86-ea9f-a4ac-b0a4-4b7dc6520628
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -874,7 +802,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","technicalName":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:02:28 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:03:03 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"dae0918f-73c3-4c41-9d8a-f10b6829b22f","technicalName":"dae0918f-73c3-4c41-9d8a-f10b6829b22f","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:17:18 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:17:46 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -883,7 +811,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:03:19 GMT
+ - Tue, 03 Mar 2026 14:17:52 GMT
Expires:
- "0"
Pragma:
@@ -901,18 +829,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 4d86ca87-83a1-481c-4db9-f2539cff1ca7
+ - 62e14163-a756-480e-50f3-e2faf8b410b1
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 471.272292ms
- - id: 13
+ duration: 204.408ms
+ - id: 12
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -927,7 +855,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 9c0c4820-1317-a58b-ed01-a38f72b1cb0f
+ - 7b4eb9ee-611a-d6e1-f39f-2f6fa7747b14
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -938,20 +866,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:03:22 GMT
+ - Tue, 03 Mar 2026 14:17:52 GMT
Expires:
- "0"
Pragma:
@@ -967,18 +895,18 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 35a8de72-538a-4cc7-6397-0af4212bb8b1
+ - 53cbe105-9344-4344-4eef-553ee9e27036
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 3.043260668s
- - id: 14
+ duration: 442.698084ms
+ - id: 13
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 116
+ content_length: 118
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
@@ -993,7 +921,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 1c8bfa17-202b-35be-170d-c5c1e114d963
+ - a6dae721-c95e-2ef8-9085-870f4dc5fb40
X-Cpcli-Format:
- json
url: https://canary.cli.btp.int.sap/login/v2.97.0
@@ -1004,20 +932,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 82
+ content_length: 84
uncompressed: false
body: '{"issuer":"identity.provider.test","mail":"john.doe@int.test","refreshToken":null}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
Content-Length:
- - "82"
+ - "84"
Content-Security-Policy:
- default-src 'self'
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:03:22 GMT
+ - Tue, 03 Mar 2026 14:17:53 GMT
Expires:
- "0"
Pragma:
@@ -1033,13 +961,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - ce1bf737-61f3-46d0-5a21-d4d5886141fc
+ - 24934f36-af1d-41d0-5ea0-a9bb6205eb03
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 470.836042ms
- - id: 15
+ duration: 410.371417ms
+ - id: 14
request:
proto: HTTP/1.1
proto_major: 1
@@ -1059,7 +987,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 3ca3e383-d2a6-1cdb-ef59-155850dbd5e4
+ - 063240b3-f655-ca76-8ea7-c1bb72dc8fc9
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1078,7 +1006,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"commercialModel":"Subscription","consumptionBased":false,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101000297","useFor":"Testing","origin":"OPERATOR","guid":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"terraform-integration-canary","description":"Global Account for Integration tests for the Terraform provider for SAP BTP on Canary Landscape\nSee https://github.com/SAP/terraform-provider-btp ","createdDate":"May 11, 2023, 8:59:23 AM","modifiedDate":"Feb 10, 2026, 4:55:39 AM","children":[{"guid":"14870944-4832-4e76-83f7-d2913661cf6d","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-se-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 23, 2025, 5:52:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jan 23, 2025, 6:03:51 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"14870944-4832-4e76-83f7-d2913661cf6d","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"customProperties":[{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":"Label text 1"},{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"},{"guid":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-roles","description":"PLEASE DO NOT DELETE!! This dir is used for integration test","createdDate":"Jul 18, 2024, 6:49:00 AM","createdBy":"john.doe+2@int.test","modifiedDate":"Jul 18, 2024, 7:49:40 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"},{"guid":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 27, 2025, 6:50:51 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Jan 29, 2025, 6:17:41 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"},{"guid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements","createdDate":"Oct 6, 2023, 9:57:23 AM","createdBy":"john.doe+4@int.test","modifiedDate":"Feb 17, 2026, 7:48:19 AM","children":[{"guid":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentGuid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGUID":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements-stacked","createdDate":"Oct 6, 2023, 9:58:25 AM","createdBy":"john.doe+5@int.test","modifiedDate":"Oct 6, 2023, 9:58:25 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+6@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"},{"guid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization","createdDate":"May 30, 2025, 2:23:53 PM","createdBy":"john.doe+7@int.test","modifiedDate":"May 30, 2025, 2:24:04 PM","children":[{"guid":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentGuid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization-stacked","createdDate":"May 30, 2025, 2:24:48 PM","createdBy":"john.doe+8@int.test","modifiedDate":"May 30, 2025, 2:24:48 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Directory created.","subdomain":"a9546df7-214e-4414-9191-3d6adfc9cb53","directoryType":"PROJECT","directoryFeatures":["AUTHORIZATIONS","DEFAULT","ENTITLEMENTS"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Global account updated.","subdomain":"terraformintcanary","subaccounts":[{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+9@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+10@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE"},{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+11@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe+12@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+13@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+14@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE"},{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe+15@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+16@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE"},{"guid":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","technicalName":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 18, 2026, 6:02:28 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:03:03 AM","contractStatus":"ACTIVE"}],"contractStatus":"ACTIVE"}'
+ body: '{"commercialModel":"Subscription","consumptionBased":false,"licenseType":"SAPDEV","geoAccess":"STANDARD","costCenter":"101000297","useFor":"Testing","origin":"OPERATOR","guid":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"terraform-integration-canary","description":"Global Account for Integration tests for the Terraform provider for SAP BTP on Canary Landscape\nSee https://github.com/SAP/terraform-provider-btp ","createdDate":"May 11, 2023, 8:59:23 AM","modifiedDate":"Feb 10, 2026, 4:55:39 AM","children":[{"guid":"14870944-4832-4e76-83f7-d2913661cf6d","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-se-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 23, 2025, 5:52:18 AM","createdBy":"john.doe+1@int.test","modifiedDate":"Jan 23, 2025, 6:03:51 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"14870944-4832-4e76-83f7-d2913661cf6d","directoryType":"PROJECT","directoryFeatures":["ENTITLEMENTS","DEFAULT","AUTHORIZATIONS"],"customProperties":[{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":"Label text 1"},{"accountGUID":"14870944-4832-4e76-83f7-d2913661cf6d","key":"redacted","value":""}],"labels":{"my-label-2":[],"my-label-1":["Label text 1"]},"contractStatus":"ACTIVE"},{"guid":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-roles","description":"PLEASE DO NOT DELETE!! This dir is used for integration test","createdDate":"Jul 18, 2024, 6:49:00 AM","createdBy":"john.doe+2@int.test","modifiedDate":"Jul 18, 2024, 7:49:40 AM","entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"79a7e7e7-fbf2-4b18-95b3-856fcc935b54","directoryType":"PROJECT","directoryFeatures":["ENTITLEMENTS","DEFAULT","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-static","description":"Please don\u0027t modify. This is used for integration tests.","createdDate":"Jan 27, 2025, 6:50:51 AM","createdBy":"john.doe+3@int.test","modifiedDate":"Jan 29, 2025, 6:17:41 AM","entityState":"OK","stateMessage":"Directory created.","subdomain":"e2af7883-3dcf-4f22-8ce5-8df81e10e62f","directoryType":"PROJECT","directoryFeatures":["ENTITLEMENTS","DEFAULT","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements","createdDate":"Oct 6, 2023, 9:57:23 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 17, 2026, 7:48:19 AM","children":[{"guid":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentGuid":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentGUID":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-entitlements-stacked","createdDate":"Oct 6, 2023, 9:58:25 AM","createdBy":"john.doe@int.test","modifiedDate":"Oct 6, 2023, 9:58:25 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"4e981c0f-de50-4442-a26e-54798120f141","technicalName":"4e981c0f-de50-4442-a26e-54798120f141","displayName":"integration-test-acc-entitlements-stacked","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"ccaf9acf-219d-47b5-bb3f-adae6871cdb2","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-acc-entitlements-stacked-gddtpz5i","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 1:14:31 PM","createdBy":"john.doe+4@int.test","modifiedDate":"Nov 14, 2023, 1:14:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+5@int.test"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Updated features assigned to directory.","subdomain":"0f7a9b71-0b19-4b6c-b20b-ab2e5445bdc2","directoryType":"PROJECT","directoryFeatures":["ENTITLEMENTS","DEFAULT","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization","createdDate":"May 30, 2025, 2:23:53 PM","createdBy":"john.doe@int.test","modifiedDate":"May 30, 2025, 2:24:04 PM","children":[{"guid":"2613212d-a51e-4e7e-858c-7f96c15d67e7","parentGuid":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentGUID":"a9546df7-214e-4414-9191-3d6adfc9cb53","parentType":"PROJECT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-dir-authorization-stacked","createdDate":"May 30, 2025, 2:24:48 PM","createdBy":"john.doe@int.test","modifiedDate":"May 30, 2025, 2:24:48 PM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Directory created.","subdomain":"a9546df7-214e-4414-9191-3d6adfc9cb53","directoryType":"PROJECT","directoryFeatures":["ENTITLEMENTS","DEFAULT","AUTHORIZATIONS"],"contractStatus":"ACTIVE"},{"guid":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentGuid":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","displayName":"integration-test-disaster-revovery","description":"Directory conatining two paired DR subaccounts","createdDate":"Feb 27, 2026, 11:33:23 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:33:23 AM","entityState":"OK","stateMessage":"Directory created.","directoryType":"FOLDER","directoryFeatures":["DEFAULT"],"subaccounts":[{"guid":"2dc1ecf1-786c-4f92-91f2-26650ab3ad28","technicalName":"2dc1ecf1-786c-4f92-91f2-26650ab3ad28","displayName":"integration-test-dr-to-be-paired-eu12","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-dr-to-be-paired-eu12-8tu9lgxa","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 12:59:03 PM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 12:59:34 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"badbcbf8-eca7-4472-9f66-cb9887ba7c3d","technicalName":"badbcbf8-eca7-4472-9f66-cb9887ba7c3d","displayName":"integration-test-dr-subaccount-eu12","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu12","subdomain":"integration-test-dr-subaccount-eu12-99p94dot","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 11:34:34 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:34:59 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"608858ef-5829-4aa6-88e7-0e220ef1aaeb","technicalName":"608858ef-5829-4aa6-88e7-0e220ef1aaeb","displayName":"integration-test-dr-subaccount-eu10-canary","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu10-canary","subdomain":"integration-test-dr-subaccount-eu10-canary-ls0upaxs","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 11:34:09 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 11:34:29 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"f59b5902-d24c-446c-b245-92c814faa0d9","technicalName":"f59b5902-d24c-446c-b245-92c814faa0d9","displayName":"integration-test-dr-to-be-paired-eu10-canary","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"c5a9f407-c93c-4aa8-ac3b-86ff6c2cf6d4","parentType":"FOLDER","parentFeatures":["DEFAULT"],"region":"eu10-canary","subdomain":"integration-test-dr-to-be-paired-eu10-canacry-hqhkrthv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 12:58:30 PM","createdBy":"john.doe@int.test","modifiedDate":"Feb 27, 2026, 12:59:17 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}],"contractStatus":"ACTIVE"}],"entityState":"OK","stateMessage":"Global account updated.","subdomain":"terraformintcanary","subaccounts":[{"guid":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","technicalName":"fc26cc61-ac5e-4c7d-9747-725f32a8994e","displayName":"integration-test-security-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-security-settings-8ptbr820","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 14, 2023, 3:04:48 PM","createdBy":"john.doe@int.test","modifiedDate":"Nov 14, 2023, 3:05:04 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"b7ed3f66-5b6d-4290-856c-099e9e3cbb1b","technicalName":"b7ed3f66-5b6d-4290-856c-099e9e3cbb1b","displayName":"integration-test-ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-ias-408hsvn1","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test bundled applications on the SAP Cloud Identity Services Provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Feb 27, 2026, 8:47:42 AM","createdBy":"john.doe+6@int.test","modifiedDate":"Feb 27, 2026, 8:48:09 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+7@int.test"},{"guid":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","technicalName":"6abfbbf5-3e21-48d9-93ee-4d3ab9ee9a4c","displayName":"ias_import_test","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"ias-import-test-bujtjv8f","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Oct 10, 2025, 7:15:01 AM","createdBy":"john.doe+8@int.test","modifiedDate":"Oct 10, 2025, 7:15:28 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+9@int.test"},{"guid":"c78f8017-009c-40a6-ae7c-7178b4b9a424","technicalName":"c78f8017-009c-40a6-ae7c-7178b4b9a424","displayName":"test_sg","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-sg-ssalzt0w","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount moved.","createdDate":"Nov 21, 2024, 6:09:30 AM","createdBy":"john.doe+10@int.test","modifiedDate":"Nov 28, 2024, 9:27:36 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+11@int.test"},{"guid":"dae0918f-73c3-4c41-9d8a-f10b6829b22f","technicalName":"dae0918f-73c3-4c41-9d8a-f10b6829b22f","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"OK","stateMessage":"Subaccount created.","createdDate":"Mar 3, 2026, 2:17:18 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:17:46 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","technicalName":"ffbf1ae9-d9a6-4c65-a2f1-4b39b8896ccc","displayName":"test-cred","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-cred-8633u6tv","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Dec 2, 2025, 7:45:48 AM","createdBy":"john.doe+12@int.test","modifiedDate":"Dec 2, 2025, 7:46:10 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+13@int.test"},{"guid":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","technicalName":"59cd458e-e66e-4b60-b6d8-8f219379f9a5","displayName":"integration-test-services-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-services-4ie3yr1a","betaEnabled":true,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Subaccount to test: \n- Service instances\n- Service Bindings\n- App Subscriptions","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 3, 2023, 11:34:41 AM","createdBy":"john.doe@int.test","modifiedDate":"Jul 7, 2023, 11:48:00 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"},{"guid":"31db5972-22fd-45b7-b923-6a91926cc598","technicalName":"31db5972-22fd-45b7-b923-6a91926cc598","displayName":"integration-test-trust-settings","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-trust-settings-20is1p4j","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Jul 15, 2024, 3:55:46 PM","createdBy":"john.doe+14@int.test","modifiedDate":"Jul 15, 2024, 3:56:07 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+15@int.test"},{"guid":"b75a605d-151c-4485-83f4-64604378e4ec","technicalName":"b75a605d-151c-4485-83f4-64604378e4ec","displayName":"test_ias","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"test-ias-uedsoe81","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"This subaccount is being used for unit tests on the SCI provider","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 12, 2024, 6:09:59 AM","createdBy":"john.doe+16@int.test","modifiedDate":"Oct 10, 2025, 10:57:18 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+17@int.test"},{"guid":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","technicalName":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","displayName":"integration-test-acc-static","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-static-b8xxozer","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","description":"Please don\u0027t modify. This is used for integration tests.","state":"OK","stateMessage":"Subaccount created.","customProperties":[{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"1"},{"accountGUID":"77395f6a-a601-4c9e-8cd0-c1fcefc7f60f","key":"redacted","value":"4"}],"labels":{"a":["1","2","3"],"b":["4","5","6"]},"createdDate":"Mar 5, 2024, 6:55:18 AM","createdBy":"john.doe+18@int.test","modifiedDate":"Mar 5, 2024, 6:55:37 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+19@int.test"},{"guid":"ba268910-81e6-4ac1-9016-cae7ed196889","technicalName":"ba268910-81e6-4ac1-9016-cae7ed196889","displayName":"integration-test-destination","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-destination-ds8oaxcf","betaEnabled":false,"usedForProduction":"NOT_USED_FOR_PRODUCTION","state":"OK","stateMessage":"Subaccount created.","createdDate":"Nov 24, 2025, 10:06:02 AM","createdBy":"john.doe+20@int.test","modifiedDate":"Nov 24, 2025, 10:06:26 AM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe+21@int.test"}],"contractStatus":"ACTIVE"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1087,7 +1015,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:03:23 GMT
+ - Tue, 03 Mar 2026 14:17:53 GMT
Expires:
- "0"
Pragma:
@@ -1105,25 +1033,25 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 72b6bf10-5345-4c74-4d01-207c31b0be37
+ - f977d31f-9530-4b53-688b-c87613e59cf7
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 412.774084ms
- - id: 16
+ duration: 310.244542ms
+ - id: 15
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 145
+ content_length: 146
transfer_encoding: []
trailer: {}
host: canary.cli.btp.int.sap
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"confirm":"true","forceDelete":"true","globalAccount":"terraformintcanary","subaccount":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b"}}
+ {"paramValues":{"confirm":"true","forceDelete":"false","globalAccount":"terraformintcanary","subaccount":"dae0918f-73c3-4c41-9d8a-f10b6829b22f"}}
form: {}
headers:
Content-Type:
@@ -1131,7 +1059,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 6e9e2b2e-bb3e-1f5a-858f-500a00172c2a
+ - 24780328-5071-cf21-ecad-719b6982250b
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1150,7 +1078,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","technicalName":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Delete subaccount entity","createdDate":"Feb 18, 2026, 6:02:28 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:03:03 AM","contractStatus":"ACTIVE","jobId":"23893521"}'
+ body: '{"guid":"dae0918f-73c3-4c41-9d8a-f10b6829b22f","technicalName":"dae0918f-73c3-4c41-9d8a-f10b6829b22f","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Delete subaccount entity","createdDate":"Mar 3, 2026, 2:17:18 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:17:46 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test","jobId":"24061118"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1159,7 +1087,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:03:23 GMT
+ - Tue, 03 Mar 2026 14:17:53 GMT
Expires:
- "0"
Pragma:
@@ -1177,157 +1105,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - dc649922-d37e-4a7d-6225-c68593f7ed8b
+ - b2c28529-da5c-45c5-7d45-f56a75201b27
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 389.68825ms
- - id: 17
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 107
- transfer_encoding: []
- trailer: {}
- host: canary.cli.btp.int.sap
- remote_addr: ""
- request_uri: ""
- body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b"}}
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Terraform/1.14.5 terraform-provider-btp/dev
- X-Correlationid:
- - 8317a87f-2712-3cac-53fb-cf5728578d56
- X-Cpcli-Customidp:
- - identityProvider
- X-Cpcli-Format:
- - json
- X-Cpcli-Sessionid:
- - redacted
- X-Cpcli-Subdomain:
- - terraformintcanary
- url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?get
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: -1
- uncompressed: true
- body: '{"guid":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","technicalName":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Feb 18, 2026, 6:02:28 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:03:24 AM","contractStatus":"ACTIVE"}'
- headers:
- Cache-Control:
- - no-cache, no-store, max-age=0, must-revalidate
- Content-Security-Policy:
- - default-src 'self'
- Content-Type:
- - application/json
- Date:
- - Wed, 18 Feb 2026 06:03:28 GMT
- Expires:
- - "0"
- Pragma:
- - no-cache
- Referrer-Policy:
- - no-referrer
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains; preload;
- X-Content-Type-Options:
- - nosniff
- X-Cpcli-Backend-Mediatype:
- - application/json;charset=UTF-8
- X-Cpcli-Backend-Status:
- - "200"
- X-Frame-Options:
- - DENY
- X-Vcap-Request-Id:
- - 1348f789-bc64-4390-4b1e-7a84d7d5d5df
- X-Xss-Protection:
- - "1"
- status: 200 OK
- code: 200
- duration: 303.183708ms
- - id: 18
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 107
- transfer_encoding: []
- trailer: {}
- host: canary.cli.btp.int.sap
- remote_addr: ""
- request_uri: ""
- body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b"}}
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Terraform/1.14.5 terraform-provider-btp/dev
- X-Correlationid:
- - ad8b1e19-6e51-d0f0-e26e-fe5b7ff618d6
- X-Cpcli-Customidp:
- - identityProvider
- X-Cpcli-Format:
- - json
- X-Cpcli-Sessionid:
- - redacted
- X-Cpcli-Subdomain:
- - terraformintcanary
- url: https://canary.cli.btp.int.sap/command/v2.97.0/accounts/subaccount?get
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: -1
- uncompressed: true
- body: '{"guid":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","technicalName":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Feb 18, 2026, 6:02:28 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:03:24 AM","contractStatus":"ACTIVE"}'
- headers:
- Cache-Control:
- - no-cache, no-store, max-age=0, must-revalidate
- Content-Security-Policy:
- - default-src 'self'
- Content-Type:
- - application/json
- Date:
- - Wed, 18 Feb 2026 06:03:34 GMT
- Expires:
- - "0"
- Pragma:
- - no-cache
- Referrer-Policy:
- - no-referrer
- Strict-Transport-Security:
- - max-age=31536000; includeSubDomains; preload;
- X-Content-Type-Options:
- - nosniff
- X-Cpcli-Backend-Mediatype:
- - application/json;charset=UTF-8
- X-Cpcli-Backend-Status:
- - "200"
- X-Frame-Options:
- - DENY
- X-Vcap-Request-Id:
- - affd56bc-7db0-4069-5e6c-3eb4d4110a4c
- X-Xss-Protection:
- - "1"
- status: 200 OK
- code: 200
- duration: 310.760208ms
- - id: 19
+ duration: 440.411917ms
+ - id: 16
request:
proto: HTTP/1.1
proto_major: 1
@@ -1339,7 +1123,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"dae0918f-73c3-4c41-9d8a-f10b6829b22f"}}
form: {}
headers:
Content-Type:
@@ -1347,7 +1131,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - d1279702-b360-2303-9c7d-1df4b86b5ab9
+ - b84b46b9-f601-56d3-346f-c8355f1530af
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1366,7 +1150,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","technicalName":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Feb 18, 2026, 6:02:28 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:03:24 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"dae0918f-73c3-4c41-9d8a-f10b6829b22f","technicalName":"dae0918f-73c3-4c41-9d8a-f10b6829b22f","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:17:18 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:17:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1375,7 +1159,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:03:44 GMT
+ - Tue, 03 Mar 2026 14:17:59 GMT
Expires:
- "0"
Pragma:
@@ -1393,13 +1177,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 01a1cd8f-de7f-41e4-7b88-a6be4862e844
+ - 99e9ef3e-362a-4085-6d5d-97a45d8d81a0
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 319.07775ms
- - id: 20
+ duration: 147.304958ms
+ - id: 17
request:
proto: HTTP/1.1
proto_major: 1
@@ -1411,7 +1195,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"dae0918f-73c3-4c41-9d8a-f10b6829b22f"}}
form: {}
headers:
Content-Type:
@@ -1419,7 +1203,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - be9c3e31-2838-c105-f25f-2ad41d52d9ad
+ - dedf8d5a-d508-acf8-0fab-8929cf3f079a
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1438,7 +1222,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","technicalName":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Feb 18, 2026, 6:02:28 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:03:24 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"dae0918f-73c3-4c41-9d8a-f10b6829b22f","technicalName":"dae0918f-73c3-4c41-9d8a-f10b6829b22f","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:17:18 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:17:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1447,7 +1231,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:03:54 GMT
+ - Tue, 03 Mar 2026 14:18:04 GMT
Expires:
- "0"
Pragma:
@@ -1465,13 +1249,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 9a256290-cd6c-44ad-6581-99f9c2b1884a
+ - 4fd2f0fc-6aa1-405c-4e6b-540e775f06f7
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 319.378333ms
- - id: 21
+ duration: 81.478334ms
+ - id: 18
request:
proto: HTTP/1.1
proto_major: 1
@@ -1483,7 +1267,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"dae0918f-73c3-4c41-9d8a-f10b6829b22f"}}
form: {}
headers:
Content-Type:
@@ -1491,7 +1275,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - 178152da-f208-d277-5a6b-f68c876336cf
+ - 12399aa7-3498-9540-9781-148c01fa5d71
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1510,7 +1294,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"guid":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","technicalName":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Feb 18, 2026, 6:02:28 AM","createdBy":"john.doe@int.test","modifiedDate":"Feb 18, 2026, 6:03:24 AM","contractStatus":"ACTIVE"}'
+ body: '{"guid":"dae0918f-73c3-4c41-9d8a-f10b6829b22f","technicalName":"dae0918f-73c3-4c41-9d8a-f10b6829b22f","displayName":"integration-test-acc-dyn","globalAccountGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","parentType":"ROOT","closestEntitlementManagedParentGUID":"03760ecf-9d89-4189-a92a-1c7efed09298","region":"eu12","subdomain":"integration-test-acc-dyn","betaEnabled":false,"usedForProduction":"UNSET","state":"DELETING","stateMessage":"Deleting subaccount.","createdDate":"Mar 3, 2026, 2:17:18 PM","createdBy":"john.doe@int.test","modifiedDate":"Mar 3, 2026, 2:17:54 PM","contractStatus":"ACTIVE","lastModifiedBy":"john.doe@int.test"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1519,7 +1303,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:04:05 GMT
+ - Tue, 03 Mar 2026 14:18:14 GMT
Expires:
- "0"
Pragma:
@@ -1537,13 +1321,13 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 29b0546d-3448-4a18-5556-c086d6c7243b
+ - 8996e4f5-cf25-4dae-4064-88550d411430
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 361.097625ms
- - id: 22
+ duration: 80.806833ms
+ - id: 19
request:
proto: HTTP/1.1
proto_major: 1
@@ -1555,7 +1339,7 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"2ed41a5c-74fc-4f55-8e2b-e79955e51c6b"}}
+ {"paramValues":{"globalAccount":"terraformintcanary","subaccount":"dae0918f-73c3-4c41-9d8a-f10b6829b22f"}}
form: {}
headers:
Content-Type:
@@ -1563,7 +1347,7 @@ interactions:
User-Agent:
- Terraform/1.14.5 terraform-provider-btp/dev
X-Correlationid:
- - e11eab81-9534-f224-97df-97c64f650650
+ - 35706416-7793-1891-1033-dbfa1d1f1e4d
X-Cpcli-Customidp:
- identityProvider
X-Cpcli-Format:
@@ -1582,7 +1366,7 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"error":"Subaccount 2ed41a5c-74fc-4f55-8e2b-e79955e51c6b not found [Error: 20004/404]"}'
+ body: '{"error":"Subaccount dae0918f-73c3-4c41-9d8a-f10b6829b22f not found [Error: 20004/404]"}'
headers:
Cache-Control:
- no-cache, no-store, max-age=0, must-revalidate
@@ -1591,7 +1375,7 @@ interactions:
Content-Type:
- application/json
Date:
- - Wed, 18 Feb 2026 06:04:15 GMT
+ - Tue, 03 Mar 2026 14:18:24 GMT
Expires:
- "0"
Pragma:
@@ -1609,9 +1393,9 @@ interactions:
X-Frame-Options:
- DENY
X-Vcap-Request-Id:
- - 6881d639-0d7f-4440-484a-cd0ffb00ee79
+ - 7056057f-73a9-4a38-68d0-9767718c07fd
X-Xss-Protection:
- "1"
status: 200 OK
code: 200
- duration: 326.348876ms
+ duration: 130.262083ms
diff --git a/btp/provider/resource_subaccount.go b/btp/provider/resource_subaccount.go
index 8423ca9b..1b9e57d3 100644
--- a/btp/provider/resource_subaccount.go
+++ b/btp/provider/resource_subaccount.go
@@ -205,6 +205,10 @@ __Further documentation:__
stringplanmodifier.UseStateForUnknown(),
},
},
+ "contract_status": schema.StringAttribute{
+ MarkdownDescription: "Shows the contract status of the subaccount.",
+ Computed: true,
+ },
},
}
}
@@ -506,11 +510,19 @@ func (rs *subaccountResource) Delete(ctx context.Context, req resource.DeleteReq
// However, the BTP API may still respond with "not ready" or "processing" errors after a successful request.
// Keeping this check ensures Terraform continues polling until the resource reaches a stable state.
deleteStateConf := &tfutils.StateChangeConf{
- Pending: []string{cis.StateDeleting, cis.StateStarted},
+ Pending: []string{cis.StateDeleting, cis.StateStarted, cis.StateUpdating},
Target: []string{cis.StateOK, cis.StateDeletionFailed, cis.StateCanceled, "DELETED"},
Refresh: func() (any, string, error) {
subRes, comRes, err := rs.cli.Accounts.Subaccount.Get(ctx, cliRes.Guid)
+ /*
+ if subRes.ContractStatus == "PENDING_FORCED_DELETION" {
+ // The subaccount is marked for deletion, we remove it from the state
+ // If the pending deletion is revoked, an import of the subaccount is needed
+ return subRes, "DELETED", nil
+ }
+ */
+
if comRes.StatusCode == http.StatusNotFound {
return subRes, "DELETED", nil
}
diff --git a/btp/provider/resource_subaccount_test.go b/btp/provider/resource_subaccount_test.go
index eee3b0d3..0b118da5 100644
--- a/btp/provider/resource_subaccount_test.go
+++ b/btp/provider/resource_subaccount_test.go
@@ -82,6 +82,7 @@ func TestResourceSubaccount(t *testing.T) {
resource.TestCheckResourceAttr("btp_subaccount.uut", "state", "OK"),
resource.TestCheckResourceAttr("btp_subaccount.uut", "usage", "UNSET"),
resource.TestCheckResourceAttr("btp_subaccount.uut", "beta_enabled", "false"),
+ resource.TestCheckResourceAttr("btp_subaccount.uut", "contract_status", "ACTIVE"),
),
ConfigStateChecks: []statecheck.StateCheck{
statecheck.ExpectIdentity(
@@ -121,6 +122,7 @@ func TestResourceSubaccount(t *testing.T) {
resource.TestCheckResourceAttr("btp_subaccount.uut", "state", "OK"),
resource.TestCheckResourceAttr("btp_subaccount.uut", "usage", "USED_FOR_PRODUCTION"),
resource.TestCheckResourceAttr("btp_subaccount.uut", "beta_enabled", "false"),
+ resource.TestCheckResourceAttr("btp_subaccount.uut", "contract_status", "ACTIVE"),
),
},
{
@@ -137,6 +139,7 @@ func TestResourceSubaccount(t *testing.T) {
resource.TestCheckResourceAttr("btp_subaccount.uut", "state", "OK"),
resource.TestCheckResourceAttr("btp_subaccount.uut", "usage", "USED_FOR_PRODUCTION"),
resource.TestCheckResourceAttr("btp_subaccount.uut", "beta_enabled", "false"),
+ resource.TestCheckResourceAttr("btp_subaccount.uut", "contract_status", "ACTIVE"),
),
},
{
@@ -169,6 +172,7 @@ func TestResourceSubaccount(t *testing.T) {
resource.TestCheckResourceAttr("btp_subaccount.uut", "state", "OK"),
resource.TestCheckResourceAttr("btp_subaccount.uut", "usage", "UNSET"),
resource.TestCheckResourceAttr("btp_subaccount.uut", "beta_enabled", "false"),
+ resource.TestCheckResourceAttr("btp_subaccount.uut", "contract_status", "ACTIVE"),
),
},
{
@@ -185,6 +189,7 @@ func TestResourceSubaccount(t *testing.T) {
resource.TestCheckResourceAttr("btp_subaccount.uut", "state", "OK"),
resource.TestCheckResourceAttr("btp_subaccount.uut", "usage", "USED_FOR_PRODUCTION"),
resource.TestCheckResourceAttr("btp_subaccount.uut", "beta_enabled", "false"),
+ resource.TestCheckResourceAttr("btp_subaccount.uut", "contract_status", "ACTIVE"),
),
},
},
@@ -213,6 +218,7 @@ func TestResourceSubaccount(t *testing.T) {
resource.TestCheckResourceAttr("btp_subaccount.uut", "usage", "NOT_USED_FOR_PRODUCTION"),
resource.TestCheckResourceAttr("btp_subaccount.uut", "beta_enabled", "true"),
resource.TestCheckResourceAttr("btp_subaccount.uut", "labels.foo.0", "bar"),
+ resource.TestCheckResourceAttr("btp_subaccount.uut", "contract_status", "ACTIVE"),
),
},
{
@@ -230,6 +236,7 @@ func TestResourceSubaccount(t *testing.T) {
resource.TestCheckResourceAttr("btp_subaccount.uut", "usage", "NOT_USED_FOR_PRODUCTION"),
resource.TestCheckResourceAttr("btp_subaccount.uut", "beta_enabled", "true"),
resource.TestCheckNoResourceAttr("btp_subaccount.uut", "labels"),
+ resource.TestCheckResourceAttr("btp_subaccount.uut", "contract_status", "ACTIVE"),
),
},
{
@@ -264,6 +271,7 @@ func TestResourceSubaccount(t *testing.T) {
resource.TestCheckResourceAttr("btp_subaccount.uut", "usage", "USED_FOR_PRODUCTION"),
resource.TestCheckResourceAttr("btp_subaccount.uut", "beta_enabled", "false"),
resource.TestCheckResourceAttr("btp_subaccount.uut", "parent_id", "2613212d-a51e-4e7e-858c-7f96c15d67e7"),
+ resource.TestCheckResourceAttr("btp_subaccount.uut", "contract_status", "ACTIVE"),
),
},
},
@@ -293,6 +301,7 @@ func TestResourceSubaccount(t *testing.T) {
resource.TestCheckResourceAttr("btp_subaccount.uut", "usage", "USED_FOR_PRODUCTION"),
resource.TestCheckResourceAttr("btp_subaccount.uut", "beta_enabled", "false"),
resource.TestCheckResourceAttr("btp_subaccount.uut", "parent_id", "a9546df7-214e-4414-9191-3d6adfc9cb53"),
+ resource.TestCheckResourceAttr("btp_subaccount.uut", "contract_status", "ACTIVE"),
),
},
},
@@ -321,6 +330,7 @@ func TestResourceSubaccount(t *testing.T) {
resource.TestCheckResourceAttr("btp_subaccount.uut", "usage", "UNSET"),
resource.TestCheckResourceAttr("btp_subaccount.uut", "beta_enabled", "false"),
resource.TestCheckResourceAttr("btp_subaccount.uut", "skip_auto_entitlement", "true"),
+ resource.TestCheckResourceAttr("btp_subaccount.uut", "contract_status", "ACTIVE"),
),
},
{
@@ -337,6 +347,7 @@ func TestResourceSubaccount(t *testing.T) {
resource.TestCheckResourceAttr("btp_subaccount.uut", "usage", "UNSET"),
resource.TestCheckResourceAttr("btp_subaccount.uut", "beta_enabled", "false"),
resource.TestCheckResourceAttr("btp_subaccount.uut", "skip_auto_entitlement", "true"),
+ resource.TestCheckResourceAttr("btp_subaccount.uut", "contract_status", "ACTIVE"),
),
},
},
diff --git a/btp/provider/type_subaccount.go b/btp/provider/type_subaccount.go
index 4126a7d6..abb43e07 100644
--- a/btp/provider/type_subaccount.go
+++ b/btp/provider/type_subaccount.go
@@ -32,6 +32,7 @@ type subaccountDataSourceType struct {
State types.String `tfsdk:"state"`
Subdomain types.String `tfsdk:"subdomain"`
Usage types.String `tfsdk:"usage"`
+ ContractStatus types.String `tfsdk:"contract_status"`
}
type subaccountType struct {
@@ -50,22 +51,24 @@ type subaccountType struct {
State types.String `tfsdk:"state"`
Subdomain types.String `tfsdk:"subdomain"`
Usage types.String `tfsdk:"usage"`
+ ContractStatus types.String `tfsdk:"contract_status"`
}
func subaccountValueFrom(ctx context.Context, value cis.SubaccountResponseObject) (subaccountType, diag.Diagnostics) {
subaccount := subaccountType{
- ID: types.StringValue(value.Guid),
- BetaEnabled: types.BoolValue(value.BetaEnabled),
- CreatedBy: types.StringValue(value.CreatedBy),
- CreatedDate: timeToValue(value.CreatedDate.Time()),
- Description: types.StringValue(value.Description),
- LastModified: timeToValue(value.ModifiedDate.Time()),
- Name: types.StringValue(value.DisplayName),
- ParentID: types.StringValue(value.ParentGUID),
- Region: types.StringValue(value.Region),
- State: types.StringValue(value.State),
- Subdomain: types.StringValue(value.Subdomain),
- Usage: types.StringValue(value.UsedForProduction),
+ ID: types.StringValue(value.Guid),
+ BetaEnabled: types.BoolValue(value.BetaEnabled),
+ CreatedBy: types.StringValue(value.CreatedBy),
+ CreatedDate: timeToValue(value.CreatedDate.Time()),
+ Description: types.StringValue(value.Description),
+ LastModified: timeToValue(value.ModifiedDate.Time()),
+ Name: types.StringValue(value.DisplayName),
+ ParentID: types.StringValue(value.ParentGUID),
+ Region: types.StringValue(value.Region),
+ State: types.StringValue(value.State),
+ Subdomain: types.StringValue(value.Subdomain),
+ Usage: types.StringValue(value.UsedForProduction),
+ ContractStatus: types.StringValue(value.ContractStatus),
}
var diags, diagnostics diag.Diagnostics
@@ -81,18 +84,19 @@ func subaccountValueFrom(ctx context.Context, value cis.SubaccountResponseObject
func subaccountListValueFrom(ctx context.Context, value cis.SubaccountResponseObject) (subaccountType, diag.Diagnostics) {
subaccount := subaccountType{
- ID: types.StringValue(value.Guid),
- BetaEnabled: types.BoolValue(value.BetaEnabled),
- CreatedBy: types.StringValue(value.CreatedBy),
- CreatedDate: timeToValue(value.CreatedDate.Time()),
- Description: types.StringValue(value.Description),
- LastModified: timeToValue(value.ModifiedDate.Time()),
- Name: types.StringValue(value.DisplayName),
- ParentID: types.StringValue(value.ParentGUID),
- Region: types.StringValue(value.Region),
- State: types.StringValue(value.State),
- Subdomain: types.StringValue(value.Subdomain),
- Usage: types.StringValue(value.UsedForProduction),
+ ID: types.StringValue(value.Guid),
+ BetaEnabled: types.BoolValue(value.BetaEnabled),
+ CreatedBy: types.StringValue(value.CreatedBy),
+ CreatedDate: timeToValue(value.CreatedDate.Time()),
+ Description: types.StringValue(value.Description),
+ LastModified: timeToValue(value.ModifiedDate.Time()),
+ Name: types.StringValue(value.DisplayName),
+ ParentID: types.StringValue(value.ParentGUID),
+ Region: types.StringValue(value.Region),
+ State: types.StringValue(value.State),
+ Subdomain: types.StringValue(value.Subdomain),
+ Usage: types.StringValue(value.UsedForProduction),
+ ContractStatus: types.StringValue(value.ContractStatus),
}
var diags, diagnostics diag.Diagnostics
@@ -108,18 +112,19 @@ func subaccountListValueFrom(ctx context.Context, value cis.SubaccountResponseOb
func subaccountDataSourceValueFrom(ctx context.Context, value cis.SubaccountResponseObject) (subaccountDataSourceType, diag.Diagnostics) {
subaccount := subaccountDataSourceType{
- ID: types.StringValue(value.Guid),
- BetaEnabled: types.BoolValue(value.BetaEnabled),
- CreatedBy: types.StringValue(value.CreatedBy),
- CreatedDate: timeToValue(value.CreatedDate.Time()),
- Description: types.StringValue(value.Description),
- LastModified: timeToValue(value.ModifiedDate.Time()),
- Name: types.StringValue(value.DisplayName),
- ParentID: types.StringValue(value.ParentGUID),
- Region: types.StringValue(value.Region),
- State: types.StringValue(value.State),
- Subdomain: types.StringValue(value.Subdomain),
- Usage: types.StringValue(value.UsedForProduction),
+ ID: types.StringValue(value.Guid),
+ BetaEnabled: types.BoolValue(value.BetaEnabled),
+ CreatedBy: types.StringValue(value.CreatedBy),
+ CreatedDate: timeToValue(value.CreatedDate.Time()),
+ Description: types.StringValue(value.Description),
+ LastModified: timeToValue(value.ModifiedDate.Time()),
+ Name: types.StringValue(value.DisplayName),
+ ParentID: types.StringValue(value.ParentGUID),
+ Region: types.StringValue(value.Region),
+ State: types.StringValue(value.State),
+ Subdomain: types.StringValue(value.Subdomain),
+ Usage: types.StringValue(value.UsedForProduction),
+ ContractStatus: types.StringValue(value.ContractStatus),
}
var diags, diagnostics diag.Diagnostics
diff --git a/docs/data-sources/subaccount.md b/docs/data-sources/subaccount.md
index 08a9add9..d6cbaeee 100644
--- a/docs/data-sources/subaccount.md
+++ b/docs/data-sources/subaccount.md
@@ -41,6 +41,7 @@ data "btp_subaccount" "my_account_bysubdomain" {
### Read-Only
- `beta_enabled` (Boolean) Shows whether the subaccount can use beta services and applications.
+- `contract_status` (String) Shows the contract status of the subaccount.
- `created_by` (String) The details of the user that created the subaccount.
- `created_date` (String) The date and time when the resource was created in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) format.
- `description` (String) The description of the subaccount.
diff --git a/docs/data-sources/subaccounts.md b/docs/data-sources/subaccounts.md
index 7e7701c9..d297d15d 100644
--- a/docs/data-sources/subaccounts.md
+++ b/docs/data-sources/subaccounts.md
@@ -44,6 +44,7 @@ data "btp_subaccounts" "filtered" {
Read-Only:
- `beta_enabled` (Boolean) Shows whether the subaccount can use beta services and applications.
+- `contract_status` (String) Shows the contract status of the subaccount.
- `created_by` (String) The details of the user that created the subaccount.
- `created_date` (String) The date and time when the resource was created in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) format.
- `description` (String) The description of the subaccount.
diff --git a/docs/resources/subaccount.md b/docs/resources/subaccount.md
index 16cbda5f..4736cbc4 100644
--- a/docs/resources/subaccount.md
+++ b/docs/resources/subaccount.md
@@ -70,6 +70,7 @@ resource "btp_subaccount" "my_project_on_azure" {
### Read-Only
+- `contract_status` (String) Shows the contract status of the subaccount.
- `created_by` (String) The details of the user that created the subaccount.
- `created_date` (String) The date and time when the resource was created in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) format.
- `id` (String) The ID of the subaccount.
diff --git a/internal/btpcli/facade_accounts_subaccount.go b/internal/btpcli/facade_accounts_subaccount.go
index 0fbad1ef..7ee1fc71 100644
--- a/internal/btpcli/facade_accounts_subaccount.go
+++ b/internal/btpcli/facade_accounts_subaccount.go
@@ -101,7 +101,7 @@ func (f *accountsSubaccountFacade) Delete(ctx context.Context, subaccountId stri
"globalAccount": f.cliClient.GetGlobalAccountSubdomain(),
"subaccount": subaccountId,
"confirm": "true",
- "forceDelete": "true",
+ "forceDelete": "false",
}
if len(directoryId) > 0 {
@@ -114,10 +114,10 @@ func (f *accountsSubaccountFacade) Delete(ctx context.Context, subaccountId stri
if err == nil {
return cisResponse, cmdResponse, nil
}
- // Check if the error is due to the fact that the force-delete option is not available
- if err != nil && (strings.Contains(err.Error(), "Subaccount cannot be deleted with forceDelete=true due to the global account settings") || strings.Contains(err.Error(), "Subaccount is marked as used for production and cannot be deleted with forceDelete=true")) {
- // Retry with force-delete disabled
- requestArgs["forceDelete"] = "false"
+ // Check if the error is due to the fact that a force-delete is required
+ if strings.Contains(err.Error(), "You can't delete subaccounts with active") {
+ // Retry with force-delete enabled
+ requestArgs["forceDelete"] = "true"
return doExecute[cis.SubaccountResponseObject](f.cliClient, ctx, NewDeleteRequest(f.getCommand(), requestArgs))
}
diff --git a/internal/btpcli/facade_accounts_subaccount_test.go b/internal/btpcli/facade_accounts_subaccount_test.go
index 92d8cc40..a6c9a225 100644
--- a/internal/btpcli/facade_accounts_subaccount_test.go
+++ b/internal/btpcli/facade_accounts_subaccount_test.go
@@ -170,7 +170,7 @@ func TestAccountsSubaccountFacade_Delete(t *testing.T) {
"globalAccount": "795b53bb-a3f0-4769-adf0-26173282a975",
"subaccount": subaccountId,
"confirm": "true",
- "forceDelete": "true",
+ "forceDelete": "false",
})
}))
@@ -193,7 +193,7 @@ func TestAccountsSubaccountFacade_Delete(t *testing.T) {
"globalAccount": "795b53bb-a3f0-4769-adf0-26173282a975",
"subaccount": subaccountId,
"confirm": "true",
- "forceDelete": "true",
+ "forceDelete": "false",
"directoryID": directoryId,
})
diff --git a/internal/btpcli/types/cis/subaccount_response_object.go b/internal/btpcli/types/cis/subaccount_response_object.go
index 60becccb..d3d4feb3 100644
--- a/internal/btpcli/types/cis/subaccount_response_object.go
+++ b/internal/btpcli/types/cis/subaccount_response_object.go
@@ -47,4 +47,6 @@ type SubaccountResponseObject struct {
TechnicalName string `json:"technicalName"`
// Whether the subaccount is used for production purposes. This flag can help your cloud operator to take appropriate action when handling incidents that are related to mission-critical accounts in production systems. Do not apply for subaccounts that are used for non-production purposes, such as development, testing, and demos. Applying this setting this does not modify the subaccount. * UNSET: Global account or subaccount admin has not set the production-relevancy flag. Default value. * NOT_USED_FOR_PRODUCTION: Subaccount is not used for production purposes. * USED_FOR_PRODUCTION: Subaccount is used for production purposes.
UsedForProduction string `json:"usedForProduction"`
+ // Added manually due to change of internal API response, not present in swagger spec
+ ContractStatus string `json:"contractStatus,omitempty"`
}